rudimentary and perhaps broken LESS impl

This commit is contained in:
minjaesong
2020-11-13 14:51:51 +09:00
parent d0f46b89d7
commit 3a26e3dde7
5 changed files with 103 additions and 0 deletions

6
assets/keytest.js Normal file
View File

@@ -0,0 +1,6 @@
println("Hit Ctrl-C or Ctrl-D to exit");
while (true) {
let key = con.getch()
println(key);
if (key == 3 || key == 4) break;
}