mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
8 lines
162 B
Plaintext
8 lines
162 B
Plaintext
var t: type = int;
|
|
var u: t = 42;
|
|
|
|
assert t == int, "types are not first class";
|
|
assert u == 42, "first-class types are screwing with values";
|
|
|
|
print "All good";
|