.. highlightlang:: us .. index:: call .. _call: call ==== .. us.tag call NOTREADYENGLISH :ref:`call` calls a UniScript function. The function name can be passed as the first parameter. .. function:: ret = call(ssFuncName) ret = call(ssFuncName, arg1, ..., argn) .. us.return **Return Value** *ret* is the return value of the *ssFuncName* function. .. us.params **Parameters** .. uparam:: ssFuncName *ssFuncName* is the name of the UniScript function. .. uparam:: arg1 *arg1* is the first parameter of the function *ssFuncName* .. us.example **Example** :: call("sin", 1) .. seealso:: :ref:`overview-programming` :sub:`id-727041`