Anyone can use this software how they please as long as this README file stays in the same place and isn't edited.
Nix is a coding language that aims to be simple to learn yet powerful for advanced users.
fun main() {
print("Hello, world!")
}
fun main() {
let x = 10
let y = 20
print(x)
print(y)
print(x + y)
}
fun hello() {
print("Hello, world!")
}
fun main() {
hello()
}
fun main() {
let ref x = 10 // x will be passed by reference
let val y = 10 // y will be passed by value
}
- winterscode: Programming