https://github.com/jrincayc/ucblogo-code
Revision 1aad31ad3f4fb91ca1773e877e70131debec26b8 authored by Joshua Cogliati on 19 December 2020, 02:52:15 UTC, committed by GitHub on 19 December 2020, 02:52:15 UTC
Windows updates for build system changes and wxWidgets 3.0.5
2 parent s 53367e1 + bae19dd
Raw File
Tip revision: 1aad31ad3f4fb91ca1773e877e70131debec26b8 authored by Joshua Cogliati on 19 December 2020, 02:52:15 UTC
Merge pull request #82 from jrincayc/windows_fixes
Tip revision: 1aad31a
runresult
RUNRESULT instructionlist

	runs the instructions in the input; outputs an empty list if
	those instructions produce no output, or a list whose only
	member is the output from running the input instructionlist.
	Useful for inventing command-or-operation control structures:

		local "result
		make "result runresult [something]
		if emptyp :result [stop]
		output first :result

back to top