p=nerv.Point(0,0)-- create a Point instanceprint(p)print(p:norm())-- get 2-norm of the Pointp:set_x(1.0)p:set_y(2.0)print(p:norm())-- get 2-norm of the Pointbp=nerv.BetterPoint(1,2)-- use methods from base classbp:set_x(1.0)bp:set_y(2.0)print(bp)print(bp:norm())--get 1-norm of the Pointprint(p.__typename)print(bp.__typename)