fork download
  1. : TEST \ n –- flag
  2. \ Leaves a true flag if n < 50 or n >100, and leaves \ a false flag otherwise.
  3. DUP 50 < \ -- n flag1
  4. SWAP 100 > \ -- flag1 flag2
  5. OR
  6. ;
  7.  
  8. : TEST
  9. 50 101 WITHIN 0=
  10. ;
Success #stdin #stdout #stderr 0.01s 5288KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
redefined TEST