IronGOLEM/tests/aton.🗿

10 lines
147 B
Plaintext
Raw Normal View History

2023-06-18 14:03:27 -04:00
main()
{
name = "aton";
test_num(aton("33"), 33, "");
test_num(aton(""), 0, "");
test_num(aton("40"), 40, "");
test_num(aton("1"), 1, "");
}