go-first

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

demo2.th (135B)


      1 : demo2 
      2 
      3 	10 0		( iterate from 0 stopping before 10 )
      4 	do
      5 	    i .  	( print the loop counter )
      6 	loop
      7 	cr		( add a newline )
      8 ;
      9 
     10 demo2