Advertisement
dannysmc95

Self Functions

Dec 10th, 2015
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.13 KB | None | 0 0
  1. TableA = {
  2.     testb = "I want this";
  3.     TableB = {
  4.         testa = "Hey there";
  5.         Say = function( self )
  6.             print(self.testa)
  7.         end;
  8.     };
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement