Skip to content
#

zen

Here are 97 public repositories matching this topic...

itssamuelrowe
itssamuelrowe commented Oct 21, 2019

JTK was created to write a compiler for a language that I designing. It's been three years since I started working on the project. Given my schedule, I am not able to work on both Zen and JTK. And writing documentation is out of the question for now. For the most part, JTK is easy to use once you are acquainted with the library. However, most users cannot comprehend the conventions, functions, and

itssamuelrowe
itssamuelrowe commented May 13, 2020

The compiler should analyze the function body to detect statements that are completely unreachable because of return and throw statements that cause a function to exit.

Consider the following example:

function main(...arguments)
    return 0
    print('Hello, world!')

In the above example, the print statement is never executed because main() is terminated before it can reach t

Improve this page

Add a description, image, and links to the zen topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the zen topic, visit your repo's landing page and select "manage topics."

Learn more