rename print() to putln()

This commit is contained in:
r4
2021-12-26 10:55:31 +01:00
parent cf93109f1e
commit d8b470f0eb
3 changed files with 4 additions and 4 deletions

View File

@@ -7,6 +7,6 @@ while i {
z := x + y
y = x
x = z
print(z)
putln(z)
i = i - 1
}

View File

@@ -14,4 +14,4 @@ while k < iterations {
}
put("π ≈ ")
print(sum)
putln(sum)