Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,15 @@
|
|||
go =>
|
||||
|
||||
% integer
|
||||
Int = "123",
|
||||
println(int=Int),
|
||||
println(parse_term=Int.parse_term+1),
|
||||
println(to_int=Int.to_int+1), % assumes integer
|
||||
nl,
|
||||
|
||||
% float
|
||||
Float = "122.5",
|
||||
println(float=Float),
|
||||
println(parse_term=Float.parse_term+1),
|
||||
println(to_float=Float.to_float+1),
|
||||
nl.
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
go2 =>
|
||||
T = "2**16+1",
|
||||
println(t=T),
|
||||
parse_term(T,Term, _Vars),
|
||||
println(term=Term),
|
||||
println(apply=Term.apply).
|
||||
Loading…
Add table
Add a link
Reference in a new issue