Advertisement
Guest User

Untitled

a guest
Oct 11th, 2017
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Structure tst
  2.   hej.l
  3.   tva.l
  4. EndStructure
  5.  
  6. Structure toast
  7.   hej1.l
  8.   hej2.l
  9.   List tst.tst()
  10. EndStructure
  11.  
  12. Structure neger
  13.   List toast.toast()
  14. EndStructure
  15.  
  16. toast1.toast
  17. AddElement(toast1\tst())
  18. toast1\tst()\hej = 100
  19. toast1\tst()\tva = 2
  20. Debug toast1\tst()\hej : Debug toast1\tst()\tva
  21.  
  22. neger.neger
  23. AddElement(neger\toast())
  24. neger\toast()\hej1 = 666 : neger\toast()\hej2 = 1337
  25. ;AddElement(neger\toast()\tst())
  26. ;neger\toast()\tst()\hej = 200
  27. ;neger\toast()\tst()\tva = 4
  28. ;Debug neger\toast()\tst()\hej : Debug neger\toast()\tst()\tva
  29.  
  30. Debug "---"
  31. Debug @neger
  32. Debug @neger\toast()
  33. ;Debug @neger\toast()\tst()
  34. ;Debug @neger\toast()\tst()\hej
  35. ;Debug @neger\toast()\tst()\tva
  36.  
  37. Debug "---"
  38. *pek = @neger\toast()
  39. Debug *pek ;*pek = hej1
  40. Debug PeekL(*pek) ;666
  41. Debug PeekL(*pek + 4) ;1337
  42.  
  43. Debug PeekL(*pek + 4 + 4) ;Shouldnt this be neger\toast()\tst() and be the same as @neger\toast()\tst() ???????
  44.  
  45. ;MY MIND IS FULL OF FUCK!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement