Use printn rather than println. Add string methods for copying.

This commit is contained in:
Christoffer Lerno
2023-02-04 15:38:06 +01:00
committed by Christoffer Lerno
parent 6b928c7a3d
commit dce171670f
39 changed files with 1627 additions and 677 deletions

View File

@@ -228,7 +228,7 @@ import std::io;
fn void main()
{
io::println("Hello, world!");
io::printn("Hello, world!");
}
```