1a = {} 2a.b = {} 3a.b.c = function() 4 print "hello" 5end 6a.b.c() 7 8ax = {} 9ax.by = {} 10ax.by.cz = function() 11 print "hello" 12end 13ax.by.cz() 14