Files
Toy/test/scripts/lib/standard.toy

11 lines
190 B
Plaintext

//test the standard library
{
import standard;
//this depends on external factors, so only check the length
assert clock().length() == 24, "clock() import failed";
}
print "All good";