The Squirrel interpreter. See http://www.squirrel-lang.org/

Dependents:   Squirrel

Committer:
jhnwkmn
Date:
Tue Dec 16 11:39:42 2014 +0000
Revision:
3:7268a3ceaffc
Parent:
0:97a4f8cc534c
Accepts \r as line terminator as well.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jhnwkmn 0:97a4f8cc534c 1 function foo(i, f, s)
jhnwkmn 0:97a4f8cc534c 2 {
jhnwkmn 0:97a4f8cc534c 3 print("Called foo(), i="+i+", f="+f+", s='"+s+"'\n");
jhnwkmn 0:97a4f8cc534c 4 }