fork download
  1. : max s" 2dup < if swap then drop" evaluate ; immediate compile-only
  2.  
  3. : 3max max max ;
  4.  
  5. cr see 3max
Success #stdin #stdout #stderr 0s 22520KB
stdin
Standard input is empty
stdout

: 3max  
  2dup < 
  IF     swap 
  THEN 
  drop 2dup < 
  IF     swap 
  THEN 
  drop ;
stderr
redefined max