Up |
funType
In the current environment (thus, the current channel), this function returns the type of any function.
Prototype :
fun [S] S
- S : the name of a function
Return : S its type or nil if error (probably, the function is not loaded in the current environment/channel)
See also :
Example
fun myFunction (a, b, c)=
_fooId a;
_fooS b;
_fooF c;
0;;
fun main ()=
_showconsole;
_fooS funType "myFunction"; // fun [I S F] I
0;;