From f67172b9a7b9e1211696f3aab7396bc0d385837f Mon Sep 17 00:00:00 2001 From: Natapat Samutpong Date: Sun, 13 Mar 2022 06:47:31 +0700 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cc785ff..f6114a8 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,14 @@ # Hazure Programming language that compiles to C++! -```kotlin +```sml fun main: int = do @write("Hello, World!\n"); return 69; end; ``` or with the pipe operator: -```kotlin +```sml fun main: int = do "Hello, World!\n" |> @write();