Template:Nasal Destructor inline

From FlightGear wiki
Revision as of 09:10, 21 June 2014 by Johan G (talk | contribs) (+cat: Undocumented templates; <noinclude> tags around categories)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
  # destructor, for deleting objects
  del: func( arg... ) {
  # add your cleanup code here
  print("Deleting object of type/template: myClass");
  return nil;
 },