diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2017-11-08 02:16:50 -0500 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2017-11-08 02:22:04 -0500 |
| commit | 0fcc2dc618f2eb00d8cf82ce328c98e0ea9f2626 (patch) | |
| tree | adabcf3d10a9204cc2adcea16404fe8b13afc16d /bin/actinide-repl | |
| parent | cb4f719cc09ab723acd72df4b727b1740650d87c (diff) | |
Wrote the tokenizer.
Diffstat (limited to 'bin/actinide-repl')
| -rwxr-xr-x | bin/actinide-repl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bin/actinide-repl b/bin/actinide-repl new file mode 100755 index 0000000..7909d36 --- /dev/null +++ b/bin/actinide-repl @@ -0,0 +1,6 @@ +#!/usr/bin/env python + +import sys +import actinide.tokenizer as at + +print(repr(list(at.tokenize(sys.stdin)))) |
