Skip to content

baehyunsol/Sodigy

Repository files navigation

Sodigy

tl;dr

  1. Rust-like syntax
  2. Purely functional
  3. Reference-counting memory management

It's still under development.

Goal of Sodigy (and the compiler)

  • Compiler not only compiles the code, but also helps user write the code.
    • The compiler possesses the most comprehensive understanding of the code.
    • It should give very detailed error messages and does as much static-analysis as possible.
  • The language has to be kept simple.
    • The core of language consists of a small set of instructions.
    • Libraries have to be written in Sodigy, instead of using C ffi.
  • The language has to be abstracted.
    • 0.2 + 0.7 is 0.9, no matter which machine you're using.
    • factorial(21) is 51090942171709440000, not an integer overflow.
    • Sodigy completely separates side effects and functions.
  • Everything has to be explicit.
    • Clarity should not be sacrificed for the sake of brevity.

About

My own programming language

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published