Fix unused function in tutorial

This commit is contained in:
itmuckel 2023-03-12 00:28:12 +01:00
parent 512b9361bf
commit be6bd9a1ec

View file

@ -195,7 +195,7 @@ birds = 3
iguanas = 2
total = Num.toStr (birds + iguanas)
total = addAndStringify birds iguanas
main =
Stdout.line "There are \(total) animals."