1
1
Fork 0
mirror of https://github.com/azur1s/bobbylisp.git synced 2024-09-28 01:17:43 +00:00
Another lisp dialect (mirror)
Go to file
2022-02-12 21:32:20 +07:00
example examples 2022-02-12 21:32:20 +07:00
src import file 2022-02-12 21:25:20 +07:00
.gitignore refactor: rewrote lol 2022-02-11 18:07:32 +07:00
Cargo.lock feat: lexer & overall rework 2022-02-12 13:28:53 +07:00
Cargo.toml feat: lexer & overall rework 2022-02-12 13:28:53 +07:00
README.md examples 2022-02-12 21:32:20 +07:00

Hycron

Programming language

func main :: () -> Int = {
    let msg :: String = "Hello, World";
    puts(msg);
    return 1;
};

TODO

  • Compliation
  • Optimization
  • Use chumsky instead of nom for parsing
  • Error reporting (better with chumsky)