Guest User

Untitled

a guest
Dec 14th, 2015
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. void setup() {
  2. // put your setup code here, to run once:
  3.  
  4. }
  5.  
  6. class dd {
  7. unsigned x, y;
  8. const char* napis;
  9. public:
  10. dd(): x(0), y(0), napis("brak") {}
  11. dd(const unsigned a1, const unsigned a2, const char* s1): x(a1), y(a2), napis(s1) {}
  12. };
  13.  
  14. void loop() {
  15. dd lol;
  16. dd hmm(2, 10, "lol");
  17. }
Advertisement
Add Comment
Please, Sign In to add comment