1
1
Fork 0
mirror of https://github.com/azur1s/bobbylisp.git synced 2024-09-28 05:17:37 +00:00
bobbylisp/README.md

16 lines
325 B
Markdown
Raw Normal View History

2022-02-12 14:28:56 +00:00
# Hycron
Programming language
2022-02-12 14:32:20 +00:00
```
func main :: () -> Int = {
let msg :: String = "Hello, World";
puts(msg);
return 1;
};
```
2022-02-12 14:28:56 +00:00
# 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)