lue

module
v0.0.0-...-69fa38c Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 9, 2023 License: MIT

README

lue

Installation

go install github.com/aadamandersson/lue/cmd/lue

Usage

lue <path>

Example

fn fib(n: int): int {
    if n <= 1 {
        n
    } else {
        fib(n - 1) + fib(n - 2)
    }
}

fn main() {
    let result = fib(9)
    println(result)
}

More examples can be found in the tests/ folder.

License

MIT licensed. See the LICENSE file for details.

Directories

Path Synopsis
cmd
lue
internal
ir

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL