!759 please include function bigint. please include function str. p { assertEquals("123", eval([[ "123" ]], (L) litlist())); // try calling unallowed function assertFail { eval([[ bigint("123") ]], (L) litlist()); } // try calling allowed functions assertEquals("234", eval([[ str(bigint("234")) ]], litlist("str", "bigint"))); // test evalWith assertEquals("y", evalWith("x", "x", "y")); print("OK"); }