Guest User

Untitled

a guest
Mar 16th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. trida Pivovar
  2. instancni promenne: jmeno adresa
  3.  
  4. ---
  5.  
  6. tridni metoda
  7.  
  8. vytvorJmeno: arg1 adresa: arg2
  9.     "Answer a newly created and initialized instance."
  10.  
  11.     ^super new vytvorJmeno: arg1 adresa: arg2
  12.  
  13. ---
  14.  
  15. instancni metoda
  16.  
  17. vytvorJmeno: arg1 adresa: arg2
  18.     "Initialize a newly created instance. This method must answer the receiver."
  19.  
  20.     super initialize.
  21.     " *** Edit the following to properly initialize instance variables ***"
  22.     jmeno := arg1.
  23.     adresa := arg2.
  24.     " *** And replace this comment with additional initialization code *** "
  25.     ^self
  26.  
  27. ---
  28.  
  29. pivovarVPopovice := Pivovar vytvorJmeno: 'Velké Popovice' adresa: 'Ringhofferova 1, Velké Popovice'.
  30.  
  31. pivovarVPopovice jmeno.
  32. 'Velké Popovice'
  33.  
  34. pivovarVPopovice adresa.
  35. 'Ringhofferova 1, Velké Popovice'
Add Comment
Please, Sign In to add comment