Taking a more traditional approach now.
[forth.jl.git] / src / forth.jl
1 module forth
2
3 RS = Array{Int64, 1}()
4 DS = Array{Int64, 1}()
5
6 primitives = Array{Expr,1}()
7
8
9
10 type Definition
11     name::AbstractString
12     data::Array{Int64,1}
13 end
14
15
16 end