Files
lux/examples/test_fbip_allocs.lux
2026-02-17 06:52:44 -05:00

9 lines
281 B
Plaintext

fn main(): Unit = {
Console.print("=== FBIP Allocation Test ===")
let a = List.range(1, 100)
let b = List.map(a, fn(x: Int): Int => x * 2)
let c = List.filter(b, fn(x: Int): Bool => x > 50)
let d = List.reverse(c)
Console.print("Single owner chain done")
}