From fd3fcc96694050e7205c2e7d3dc8e682820a344d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Przemys=C5=82aw=20Pluta?= Date: Wed, 25 Mar 2020 20:44:10 +0100 Subject: [PATCH] Updated smnp.io (markdown) --- smnp.io.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/smnp.io.md b/smnp.io.md index 8843ada..de2d7a9 100644 --- a/smnp.io.md +++ b/smnp.io.md @@ -2,7 +2,7 @@ ## `print(...items)` Prints the string representation of given items to standard output. -Example: +### Example ``` print("a"); print("b"); @@ -15,7 +15,7 @@ print("c"); ## `println(...items)` The same as `print(...)` however ends each line new line character (`\n`). -Example: +### Example ``` println("a"); println("b"); @@ -30,7 +30,7 @@ println("c"); ## `read(prompt: string = "")` Reads an input from user as a string. The optional parameter is the prompt displayed on the standard output. -Example: +### Example ``` name = read("Provide your name: "); println("Hello, " + name + "!");