4 lines
80 B
Text
4 lines
80 B
Text
Function aPlusB(%input)
|
|
{
|
|
return getWord(%input, 0) + getWord(%input, 1);
|
|
}
|