fork download
  1. : squared ( n1 -- n1^2 )
  2. DUP * ;
  3. 4 squared .
  4.  
  5. 12 squared .
  6.  
  7.  
Success #stdin #stdout 0.01s 5324KB
stdin
Standard input is empty
stdout
16 144