https://github.com/outercloudstudio/mew-compiler
https://github.com/outercloudstudio/mew-compiler
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/outercloudstudio/mew-compiler
- Owner: outercloudstudio
- License: mit
- Created: 2023-06-17T21:32:38.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-01-06T18:12:51.000Z (over 1 year ago)
- Last Synced: 2025-06-10T21:24:28.524Z (12 months ago)
- Language: TypeScript
- Size: 385 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# The Mew Idea
Be the next step up from scratch as a language for people to learn.
## Examples of Principles in Practice
```
float velocity = 1
void update() {
X += velocity
velocity *= 0.9
}
```
# Todo
- Support function calls
- Resolve paths when dealing with dependencies and source
- Support parameters in functions
- Add control statements (for, while, break, return)
- Support type casting
- Validate and Type Compute Step
# Future
- Support properties and namespaces (.)