Template:Nasal Method Inline

From FlightGear wiki
Revision as of 09:13, 21 June 2014 by Johan G (talk | contribs) (+cat: Nasal Code Generation Templates)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
# declare a method named myMethod
 myMethod: func(arg...) {
  # do your processing here
  return nil; 
 },