I've been trying to use the either function in my port from Harlowe to Sugarcube to no avail. I've pasted the code directly from the manual:
either("Blueberry", "Cherry", "Pecan")
My output is: either("Blueberry", "Cherry", "Pecan")
Is this function available at this time?
Comments
If you're try to print the selected text, then you need to use <<print>>. For example: Using your given code: (w/ line-breaks and indention for readability)
That's not quite correct. If you merely need to use the returned value immediately, then you can simply do that. You only need to store it in a variable if you want to keep it around.
That's not quite correct. If you merely need to use the returned value immediately, then you can simply do that. You only need to store it in a variable if you want to keep it around.
[/quote]
Oh I see, thanks.