Remove trailing newlines from Hello World examples

This commit is contained in:
Jan Van Bruggen 2022-02-27 19:34:47 -07:00
parent 6ea8df5e16
commit 9f68194436
5 changed files with 9 additions and 9 deletions

View file

@ -53,6 +53,6 @@ extension RocStr {
@_cdecl("main")
func main() -> UInt8 {
print(roc__mainForHost_1_exposed().string)
print(roc__mainForHost_1_exposed().string, terminator: "")
return 0
}