Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 873 Bytes

getting-started.md

File metadata and controls

22 lines (14 loc) · 873 Bytes

Ezno is work in progress. It doesn't currently support all the features of JavaScript and TypeScript but it has a fairly large specification of features that it supports today.

While it is not worth it trying it on existing codebases at this time (as it likely will blow up 💥), you can try out the snippets in the specification and other small pieces of code today.

You can try the check command of ezno using npx

npx ezno check file.ts

Or download the binary with npm install ezno, cargo install ezno or on GitHub releases.


You can use the print_type function to see the type of expressions.

const x = 6;
print_type(x + 8)

If you find any unexpected exceptions, please leave an issue 😁