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
Allow puts to take multiple arguments
Tony Arcieri (author)
Tue Jul 08 02:21:18 -0700 2008
commit  58797ed91824510c8b64d90e0e28aa381912a96d
tree    a40afb319be42201b7ed073cea705b74c5da16bd
parent  5b6f25ed11c3e31b838115412f5642ef5f8e52da
...
16
17
18
19
20
 
 
21
...
16
17
18
 
19
20
21
22
0
@@ -16,4 +16,5 @@ module ReiaEval
0
   def local(name, args)
0
     case name
0
       ~puts:
0
- reia_kernel::puts(args[0])
0
\ No newline at end of file
0
+ args.each { |arg| reia_kernel::puts(arg) }
0
+ nil
0
\ No newline at end of file

Comments

    No one has commented yet.