Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class
- APPLICATION
- create
- execute
- feature {NONE} -- Initialization
- execute
- -- Run application.
- do
- Io.put_string ("Name: Philipp Schaad")
- Io.new_line
- Io.put_string ("Age: ")
- Io.put_integer (19)
- Io.new_line
- Io.put_string ("Mother tongue: English")
- Io.new_line
- Io.put_string ("Has a cat: ")
- Io.put_boolean (false)
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement