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

Compare commits

...

2 commits

Author SHA1 Message Date
Natapat Samutpong d169670b00 examples 2022-02-12 21:32:20 +07:00
Natapat Samutpong f0a1a5140b todolist 2022-02-12 21:28:56 +07:00
2 changed files with 18 additions and 1 deletions

16
README.md Normal file
View file

@ -0,0 +1,16 @@
# Hycron
Programming language
```
func main :: () -> Int = {
let msg :: String = "Hello, World";
puts(msg);
return 1;
};
```
# TODO
- Compliation
- Optimization
- Use [chumsky](https://github.com/zesterer/chumsky) instead of [nom](https://github.com/Geal/nom) for parsing
- Error reporting (better with chumsky)

View file

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