added test file; added index file to prevent directory listing by web server

This commit is contained in:
Bob Polis 2020-09-10 15:28:12 +02:00
parent c4ade5ee09
commit edb61d1b09
2 changed files with 46 additions and 0 deletions

21
code/hello.txt Normal file
View File

@ -0,0 +1,21 @@
3
=cnt
\Hello, world!
enl
=hello
\
=result
:loop
$result
$hello
cat
=result
$cnt
dec
=cnt
$cnt
0
>loop
ggt
$result
end

25
code/index.html Normal file
View File

@ -0,0 +1,25 @@
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>CPPLS1 Eindopdracht 2021</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<!-- Place favicon.ico in the root directory -->
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">
You are using an <strong>outdated</strong> browser. Please
<a href="http://browsehappy.com/">upgrade your browser</a> to improve
your experience.
</p>
<![endif]-->
<p>Nothing here. :-)</p>
</body>
</html>