1
1
Fork 0
mirror of https://github.com/azur1s/bobbylisp.git synced 2024-10-16 02:37:40 -05:00

Update README.md

This commit is contained in:
Natapat Samutpong 2022-03-13 06:47:31 +07:00
parent 7be91158dc
commit f67172b9a7

View file

@ -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();