Go to the first, previous, next, last section, table of contents.


call

call(name, args)
:: 函数 name を呼び出す.
return
函数 name() の返り値.
name
函数名を表す不定元(函数子とは限らない)
args
引数のリスト
[0] A=igcd;
igcd
[1] call(A,[4,6]);
2
[2] (*A)(4,6);
2
参照
section vtype.


Go to the first, previous, next, last section, table of contents.