mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-22 15:37:51 +00:00
```odin
foo :: proc(x: $T) { fmt.println(x) }
bar :: intrinsics.procedure_of(foo(int(123))) // parameters are never ran at compile time, similar to `size_of`
bar(333) // prints 333
```