https://github.com/lunastev/wave-ex
Wave - Programming Language. Mail : support@wave-lang.dev
https://github.com/lunastev/wave-ex
documentation language programming programming-language wave
Last synced: 9 months ago
JSON representation
Wave - Programming Language. Mail : support@wave-lang.dev
- Host: GitHub
- URL: https://github.com/lunastev/wave-ex
- Owner: LunaStev
- Created: 2023-09-03T12:33:36.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-04T05:06:49.000Z (over 1 year ago)
- Last Synced: 2025-02-05T17:14:30.526Z (11 months ago)
- Topics: documentation, language, programming, programming-language, wave
- Homepage: https://wave-lang.dev
- Size: 18.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# Wave - Programming Language
[
](https://www.wave-lang.dev)
Welcome to the Wave programming language documentation. The Wave project is currently in development. As of September 3, 2023, we are using Antlr for its development, though this may change in the future.
What exactly is the Wave programming language? Wave is a compiled language. It's a compiled language developed by someone named LunaStev for game development. It was created for game framework and game engine development, and our aim is to develop a language optimized for such functions.
## Code
```wave
fun hello(name :str) {
print("{}", name);
}
fun main() {
var a :str = "LunaStev";
count b = 10;
print("Hello, World! {a} {b}");
hello("LunaStev");
}
```
```cmd
Hello, World! LunaStev 10
LunaStev
```