Files
coffeescript/test/fixtures/execution/keyword_operators.cs
2009-12-24 11:50:44 -08:00

10 lines
147 B
Smalltalk

a: 5
atype: typeof a
b: "hello"
btype: typeof b
Klass: => .
k: new Klass()
print(atype is 'number' and btype is 'string' and k instanceof Klass)