Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/blaketarter/ante


https://github.com/blaketarter/ante

Last synced: 16 days ago
JSON representation

Awesome Lists containing this project

README

        

# ANTE

building a language when I know nothing about language design

the compiler will be node for now

code example
```
const fizz: str = `hello world`;

const foo: func = : str (bar: str, baz: str) => {
const buzz: str = bar . baz;
return buzz;
};

export const main: func = : null () => {
const test: str = foo(`hello`, `world`);
log(test);
return null;
}
```