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

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

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
```