This commit is contained in:
lordwelch 2017-10-26 14:51:49 -06:00
commit b2275ddbc0
2 changed files with 105 additions and 0 deletions

20
main.go Normal file
View File

@ -0,0 +1,20 @@
package main
import (
"fmt"
"os"
)
func int main() {
var (
err error
input bufio.reader
key rune;
)
input = bufio.NewReader(os.Stdin)
for err == nil {
key,_,err = input.ReadRune()
}

85
q.json Normal file
View File

@ -0,0 +1,85 @@
"!"
"""
"#"
"$"
"%"
"&"
"'"
"("
")"
"*"
"+"
","
"-"
"."
"/"
":"
";"
"<"
"="
">"
"?"
"@"
"A"
"B"
"C"
"D"
"E"
"F"
"G"
"H"
"I"
"J"
"K"
"L"
"M"
"N"
"O"
"P"
"Q"
"R"
"S"
"T"
"U"
"V"
"W"
"X"
"Y"
"Z"
"["
"\"
"]"
"^"
"_"
"a"
"b"
"c"
"d"
"e"
"f"
"g"
"h"
"i"
"j"
"k"
"l"
"m"
"n"
"o"
"p"
"q"
"r"
"s"
"t"
"u"
"v"
"w"
"x"
"y"
"z"
"{"
"|"
"}"
"~"
"\n"
"\t"