rm print
This commit is contained in:
@@ -20,8 +20,8 @@ var concat_all = function(a, b, c) {
|
||||
return a + b + c
|
||||
}
|
||||
|
||||
if (sum_ints(1, 2, 3) != 6) { print("FAIL sum_ints") }
|
||||
if (count_down(5) != 15) { print("FAIL count_down") }
|
||||
if (concat_all("a", "b", "c") != "abc") { print("FAIL concat_all") }
|
||||
if (sum_ints(1, 2, 3) != 6) { log.error("FAIL sum_ints") }
|
||||
if (count_down(5) != 15) { log.error("FAIL count_down") }
|
||||
if (concat_all("a", "b", "c") != "abc") { log.error("FAIL concat_all") }
|
||||
|
||||
print("backward type tests passed")
|
||||
log.test("backward type tests passed")
|
||||
|
||||
Reference in New Issue
Block a user