Meaningless changes.
[forth.jl.git] / src / forth.jl
1 module FORTH
2
3 function input(prompt::AbstractString="")
4     print(prompt)
5     strip(readline)
6 end
7
8 dictCore = Set{AbstractString}([
9     "bye"
10 ])
11
12 function coreEval(word::AbstractString)
13     if word == "bye"
14 end
15
16 function repl()
17
18     while true
19         line = input()
20
21     end
22 end
23
24 end