OSDN Git Service

I implement Array literal.
authormzp <mzpppp@gmail.com>
Fri, 31 Jul 2009 23:24:46 +0000 (08:24 +0900)
committermzp <mzpppp@gmail.com>
Fri, 31 Jul 2009 23:24:46 +0000 (08:24 +0900)
(array 1 2 3) is same as [1, 2, 3] in AS3.

scm/example/array.scm [new file with mode: 0644]

diff --git a/scm/example/array.scm b/scm/example/array.scm
new file mode 100644 (file)
index 0000000..92d9fa4
--- /dev/null
@@ -0,0 +1,2 @@
+;;; 1,2,3
+(trace (array 1 2 3))