some stupid bug

This commit is contained in:
Peter Harpending
2026-09-02 04:44:11 -07:00
parent 17cca5ecfe
commit ede7d8e977
4 changed files with 153 additions and 30 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/usr/bin/env escript
%% script for keycode mapping
main([]) ->
ok = shell:start_interactive({noshell, raw}),
dum([]).
dum(Q) ->
io:format("~tw\r\n", [Q]),
NewChar = io:get_chars("", 1),
dum(Q ++ NewChar).