diff options
-rw-r--r-- | .nojekyll | 0 | ||||
-rw-r--r-- | TUTORIAL.md | 9 | ||||
-rw-r--r-- | browser/index.html | 17 | ||||
-rw-r--r-- | index.html | 16 |
4 files changed, 25 insertions, 17 deletions
diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/.nojekyll diff --git a/TUTORIAL.md b/TUTORIAL.md index 49ac4fb..67fd2fe 100644 --- a/TUTORIAL.md +++ b/TUTORIAL.md @@ -78,6 +78,15 @@ Here's a list of supported operations. 6I4 ``` +### Hold Bang + +``` +..S +... +Hh. +SF. +``` + ### Delay ``` diff --git a/browser/index.html b/browser/index.html deleted file mode 100644 index 89de8e0..0000000 --- a/browser/index.html +++ /dev/null @@ -1,17 +0,0 @@ -<html> - <head> - <link rel="stylesheet" type="text/css" href="../desktop/sources/links/style.css"/> - <title>Orca</title> - </head> - <body> - <script type="module" src="mock/require.js"></script> - <script type="module"> -import Terminal from "../desktop/sources/scripts/terminal.js"; -const terminal = new Terminal() -window.terminal = terminal // global availability for e.g. udp - -terminal.install(document.body) -terminal.start(); - </script> - </body> -</html> diff --git a/index.html b/index.html new file mode 100644 index 0000000..9d0254b --- /dev/null +++ b/index.html @@ -0,0 +1,16 @@ +<html> + <head> + <link rel="stylesheet" type="text/css" href="desktop/sources/links/style.css"/> + <title>Orca</title> + </head> + <body> + <script type="module" src="browser/mock/require.js"></script> + <script type="module"> + import Terminal from "desktop/sources/scripts/terminal.js"; + const terminal = new Terminal() + window.terminal = terminal + terminal.install(document.body) + terminal.start() + </script> + </body> +</html> |