Flux is a general purpose, multi-paradigm programming language. Designed to be an intermediary between nodejs and Python, and more advanced languages such as Rust or C++, it provides a friendly programming experience while maintaining the speed of a low-level language.
mut x, y = 1
mut z = 0
loop {
    z = x
    x += y
    y = z
    print z
}
Flux is licensed under the LGPLv3 License.
