Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/blaketarter/ante
https://github.com/blaketarter/ante
Last synced: 16 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/blaketarter/ante
- Owner: blaketarter
- Created: 2016-12-20T05:12:32.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-21T03:04:13.000Z (about 8 years ago)
- Last Synced: 2024-11-06T22:46:59.443Z (2 months ago)
- Language: JavaScript
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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;
}
```