indexing description : "System's root class" date: "$Date$" revision: "$Revision$" class APPLICATION create make feature -- Initialization make is -- Run application. local i,b:INTEGER do i:=0 b := i + 10 print("Value of i") io.put_integer_32 (i) --| Add your code here end end -- class APPLICATION