Garden 🌻

Fun type

A function, which is a value that can be called with arguments.

let f: Fun<(Int, Int), Int> = fun(x, y) { x + y }
Source Code
struct Fun<Args, Out> {
  __BUILT_IN_IMPLEMENTATION: NoValue,
}