Advertisement
Guest User

Untitled

a guest
Jul 15th, 2012
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.27 KB | None | 0 0
  1. type
  2.    pytanie = record
  3.      pytanie: String;
  4.      odpowiedz: String; {czy jakie tam chcesz mieć typy, niewazne}
  5. end;
  6.  
  7. var tablica: array [1.20] of pytanie
  8.  
  9. {użycie}
  10.  
  11. tablica[5].pytanie = "Jakiego koloru jest czerwony maluch?"
  12. tablica[5].odpowiedz = "#ff0000"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement