awestlake87/helix

static operator

Opened this issue · 0 comments

mark an expr to be evaluated at compile time or JIT time.

a: static double 4.5

fun void only_ints(num)
    static assert typeof num tropeof int

// works
only_ints(4)

// fails to compile
only_ints(4.0)