[30 Jan 2010] function return value
Posted: Sat Jun 13, 2020 5:32 pm
Note: This is an archived post that was originally sent to the Hollywood mailing list on Sat, 30 Jan 2010 14:41:39 +0100
Hi!
Just a simple question:
Why not works equally these to scripts?
Hi!
Just a simple question:
Why not works equally these to scripts?
Code: Select all
/************************/
DebugPrint (
Function()
Return (1,2,3)
EndFunction
)
/*************************/
/*************************/
Function p_threevals()
Return (1,2,3)
EndFunction
DebugPrint(p_threevals())
/***************************/