forked from starnakin/IronGOLEM
10 lines
147 B
Plaintext
10 lines
147 B
Plaintext
main()
|
|
{
|
|
name = "aton";
|
|
|
|
test_num(aton("33"), 33, "");
|
|
test_num(aton(""), 0, "");
|
|
test_num(aton("40"), 40, "");
|
|
test_num(aton("1"), 1, "");
|
|
}
|