diff --git a/examples/fizzbuzz.ds b/examples/fizzbuzz.ds index 041e9b7..f885afb 100644 --- a/examples/fizzbuzz.ds +++ b/examples/fizzbuzz.ds @@ -11,7 +11,7 @@ while count <= 15 { } else if divides_by_5 { "buzz" } else { - count.to_string() + string(count) } write_line(output)