Files @ 7cf6df93d16d
Branch filter:

Location: CSY/reowolf/std/std.global.pdl - annotation

MH
Move builtin definitions to std lib
1
2
3
4
5
6
7
8
9
#module std.global

func get<T>(in<T>) -> T #builtin
func put<T>(out<T>, T value) -> #type_void #builtin
func fires<T>(#type_portlike<T>) -> bool #builtin
func create<T>(#type_integerlike length) -> T[] #builtin
func length<T>(#type_arraylike<T> array) -> u32 #builtin
func assert(bool condition) -> #type_void #builtin
func print(string message) -> #type_void #builtin