Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amasecocoa/veloce
💨 Python-like, fast compiled language
https://github.com/amasecocoa/veloce
Last synced: about 2 months ago
JSON representation
💨 Python-like, fast compiled language
- Host: GitHub
- URL: https://github.com/amasecocoa/veloce
- Owner: AmaseCocoa
- License: zlib
- Created: 2024-11-01T08:02:49.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-11-01T08:21:01.000Z (3 months ago)
- Last Synced: 2024-11-01T09:17:48.420Z (3 months ago)
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# veloce
easy, fast compiled language.## Purpose
* Create a language with a syntax that is easy to understand and performs as well or better than C.
## Compiler
* Here's an experimental compiler using Python: [AmaseCocoa/pveloce](https://github.com/AmaseCocoa/pveloce)
* The Phase 1 compiler will be Go.
* There are plans to eventually rewrite the compiler itself in Veloce.## Syntax
```
println("Hello")fn greeting(name: string) {
println(f"Hello, {name}!")
}greeting("Veloce") // Hello, Veloce!
```
## Todo
* Make Compiler
* stdlib
* Compatibility with other languages
* Interpreter mode (executes code without the need to compile, like Node.js, etc., but with lower performance)