Search ('all' for everything):
Search results:
getch — get character
getche — get and echo character
kbhit — check for keyboard character

Index of Function Types:
affects &pos
character sets
co-expressions
control structures
file processing
generators
infix operations
keywords
lists, sets and tables
math
metadata
output formatting
pattern matching
prefix operations
records
strings
windows and keyboards

Index of Subsystems:
base
digitcnt.icn
SNOBOL4 functions
 
suspend from procedure
 
Description

suspend expr1 do expr2
suspend expr1 do expr2 suspends from the current procedure which is a generator, producing each result generated by expr1. If suspend is resumed, expr2 is evaluated before resuming expr1. The do clause is optional.
 
Parameters
expr1
expression to be evaluated for result
expr2
expression to be evaluated on resuming a procedure that is a generator
 
Defaults
expr1
&null (only if the do clause is omitted)
 
See Also
  • fail — fail from procedure
  • &fail — failure
  • return — return from procedure