mod common; #[test] fn std_typeof() { common::test_program( " print typeof(\"test\") print typeof(3) print typeof(3.0) print typeof(3f) print typeof(3i) print typeof(-1) print typeof(true) print typeof(false) ", "String\nDecimal\nDecimal\nDecimal\nInteger\nDecimal\nBoolean\nBoolean\n", ); }