Advertisement
Guest User

piwa

a guest
Oct 18th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ada 0.24 KB | None | 0 0
  1. package Piwa is
  2.    type gatunki is (LAGER, HEFEWEIZEN, PORTER_BALTYCKI);
  3.    subtype zawartoscAlkoholu is integer range 3 .. 12;
  4.  
  5.    type Piwo is record
  6.       gatunek : gatunki;
  7.       moc : zawartoscAlkoholu;
  8.    end record;
  9.  
  10. end Piwa;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement