Preserve trace, error & todo formatting.

This commit is contained in:
KtorZ
2023-02-15 23:02:49 +01:00
parent 6525f21712
commit 808ff97c68
7 changed files with 127 additions and 40 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
}
}