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