Advertisement
PhilDrummer

Assignment_2 02

Sep 26th, 2014
2,631
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Eiffel 0.37 KB | None | 0 0
  1. class
  2.     APPLICATION
  3.  
  4. create
  5.     execute
  6.  
  7. feature {NONE} -- Initialization
  8.  
  9.     execute
  10.             -- Run application.
  11.         do
  12.             Io.put_string ("Name: Philipp Schaad")
  13.             Io.new_line
  14.             Io.put_string ("Age: ")
  15.             Io.put_integer (19)
  16.             Io.new_line
  17.             Io.put_string ("Mother tongue: English")
  18.             Io.new_line
  19.             Io.put_string ("Has a cat: ")
  20.             Io.put_boolean (false)
  21.         end
  22.  
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement