Fix acceptance tests to use new syntax.

This commit is contained in:
KtorZ
2023-02-18 09:48:05 +01:00
parent 53fb821b62
commit 5132110d4b
17 changed files with 37 additions and 36 deletions

View File

@@ -10,10 +10,10 @@ fn concat(left: String, right: String) -> String {
fn is_negative(i: Int) -> Bool {
if i < 0 {
trace "is negative"
trace @"is negative"
True
} else {
trace concat("is", concat(" ", "non-negative"))
trace concat(@"is", concat(@" ", @"non-negative"))
False
}
}