eLang is a programming language developed by Bekhruz Niyazov (it is still in development).
eLang is written in C.
Just grab the latest release for your operating system from releases section, add it to the path (recommended), and you are good to go.
Here is an example of a function that says hello to the given name:
fun greet(name) {
println("Hello, ", name)
}
greet("eLang")
Output:
Hello, eLang
You can view test.elang
file for latest eLang features.
eLang is licensed with MIT License.
Special thanks to JetBrains who helped in the development of the project by providing free license to their products.