public
Description: Reia is a Ruby/Python-like language for BEAM, the Erlang VM
Homepage: http://reia-lang.org
Clone URL: git://github.com/tarcieri/reia.git
Working evaluation through Reia's interpreter
Tony Arcieri (author)
Tue Jul 08 01:43:40 -0700 2008
commit  f60c09cf82d6a3a48dea20daa614b73aa365642e
tree    c6f4b55ff65e7ff35aef72c0c7d9719f7e9f8f0c
parent  0af8c86f5c6a481ed16eacd00754fa4a85ba25f8
...
19
20
21
22
23
 
24
...
19
20
21
 
22
23
24
0
@@ -19,4 +19,4 @@ module Reia
0
       reia_eval::string(input)
0
       erlang::halt(0)
0
     catch ex
0
- io::format("~p~n".to_list(), [ex])
0
\ No newline at end of file
0
+ io::format("exception: ~p~n".to_list(), [ex])
0
\ No newline at end of file
...
2
3
4
5
 
6
7
8
...
2
3
4
 
5
6
7
8
0
@@ -2,7 +2,7 @@ module ReiaEval
0
   def string(str)
0
     case reia_parse::string(str.to_list())
0
       (~ok, forms):
0
- exprs(forms, reia_eval::new_binding())
0
+ exprs(forms, new_binding())
0
       error:
0
         error
0
     

Comments

    No one has commented yet.