3b566b1a021085b52505324ea976495028359bf9
[jscl.git] / prelude.js
1 //
2
3 function Symbol(name){
4     this.name = name;
5 }
6
7 function Cons(car, cdr){
8     this.car = car;
9     this.cdr = cdr;
10 }
11
12
13
14 console.log('Running test.js...');