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:
parent
7be91158dc
commit
f67172b9a7
|
@ -1,14 +1,14 @@
|
||||||
# Hazure
|
# Hazure
|
||||||
Programming language that compiles to C++!
|
Programming language that compiles to C++!
|
||||||
|
|
||||||
```kotlin
|
```sml
|
||||||
fun main: int = do
|
fun main: int = do
|
||||||
@write("Hello, World!\n");
|
@write("Hello, World!\n");
|
||||||
return 69;
|
return 69;
|
||||||
end;
|
end;
|
||||||
```
|
```
|
||||||
or with the pipe operator:
|
or with the pipe operator:
|
||||||
```kotlin
|
```sml
|
||||||
fun main: int = do
|
fun main: int = do
|
||||||
"Hello, World!\n"
|
"Hello, World!\n"
|
||||||
|> @write();
|
|> @write();
|
||||||
|
|
Loading…
Reference in a new issue