Hi there,
is there any way to get the parameters expected by a procedure during compilation or runtime?
So I am looking for something like this:
nice_proc :: proc(a: i32, b: f32, c: string){
...
}
id := typeid_of(nice_proc)
names := reflect.proc_arg_names(id)
types := reflect.proc_arg_types(id)
I’d like to use it for a nice binding system to a scripting language.