fork download
  1. USING: formatting io kernel locals math math.functions math.parser ;
  2. IN: main
  3. "Hello, World" printf
  4. :: loop ( i -- )
  5. i "%d " printf
  6. ;
  7.  
  8. readln string>number
  9. loop
Success #stdin #stdout 1.33s 164864KB
stdin
30
stdout
Hello, World30