Cosmon is a simple, compiled programming language built in Rust.
It is a statically typed programming language and for the time being it is intended as a proof of concept instead of becoming a production-ready programming language.
var: string hello = "Hello, World!";
print(hello);
var: int x = 10;
x = x * 2 + 5;
print(x);
This is a simple example of the Cosmon language. In this example we simply define a variable and print it to the console.
Below that we define a number. In the next line we do some mathematical operations on it and afterwards we print it to the console.
Godot is a lightweight, free and open-source game engine.