├── LICENSE ├── README.md ├── examples ├── answer.soul ├── equality.soul ├── fac.soul ├── get.soul └── hello.soul └── src └── soul.eg /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egel-lang/soul/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egel-lang/soul/HEAD/README.md -------------------------------------------------------------------------------- /examples/answer.soul: -------------------------------------------------------------------------------- 1 | # calculate the answer to everything 2 | :f * 6 3 | + 3 4 f print 4 | -------------------------------------------------------------------------------- /examples/equality.soul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egel-lang/soul/HEAD/examples/equality.soul -------------------------------------------------------------------------------- /examples/fac.soul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egel-lang/soul/HEAD/examples/fac.soul -------------------------------------------------------------------------------- /examples/get.soul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egel-lang/soul/HEAD/examples/get.soul -------------------------------------------------------------------------------- /examples/hello.soul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egel-lang/soul/HEAD/examples/hello.soul -------------------------------------------------------------------------------- /src/soul.eg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egel-lang/soul/HEAD/src/soul.eg --------------------------------------------------------------------------------