mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-19 16:54:08 +10:00
11 lines
242 B
Plaintext
11 lines
242 B
Plaintext
//test for casting + grouping, see #67
|
|
{
|
|
assert string(10 % 4) == 2, "basic group casting failed";
|
|
assert string 4 == 4, "Normal casting failed";
|
|
|
|
assert typeof string(10 % 4) == string, "group casting type failed";
|
|
}
|
|
|
|
|
|
|
|
print "All good"; |