Guest User

Untitled

a guest
Oct 20th, 2018
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. use v6;
  2.  
  3. class Evilboot
  4. {
  5. has $.nick = '';
  6. has $.username = '';
  7. has $.realname = '';
  8.  
  9. has $.server = 'irc.perl.org';
  10. has $.port = 6667;
  11. has $.password;
  12.  
  13. has @.channels = [];
  14. has @.chanpass = [];
  15.  
  16. method !connect();
  17. method !dispatch();
  18. method run();
  19. };
Add Comment
Please, Sign In to add comment