1
1
Fork 0
mirror of https://github.com/azur1s/bobbylisp.git synced 2024-09-27 23:37:42 +00:00
This commit is contained in:
Natapat Samutpong 2022-02-12 21:32:20 +07:00
parent f0a1a5140b
commit d169670b00
2 changed files with 10 additions and 1 deletions

View file

@ -1,6 +1,14 @@
# Hycron
Programming language
```
func main :: () -> Int = {
let msg :: String = "Hello, World";
puts(msg);
return 1;
};
```
# TODO
- Compliation
- Optimization

View file

@ -14,4 +14,5 @@ func main :: () -> Int = {
let n :: Bool = 2 == 2;
// Prefix operator
let m :: Bool = !n;
};
puts(m);
};