diff --git a/README.md b/README.md index 2066f50cb..01be945e3 100644 --- a/README.md +++ b/README.md @@ -613,3 +613,15 @@ print(x) ### 8.8 Coroutines No plans to support this. + +### Print +`print(x)` is translated to `stdout (sprintf "%s" (xx.as-string))` + You may use this example: + ``` + x = 1 + print(x) + ``` + or this + ``` + print("Hello, world!") + ```