Template:Nasal Method Inline

From FlightGear wiki
Jump to navigation Jump to search
# declare a method named myMethod
 myMethod: func(arg...) {
  # do your processing here
  return nil; 
 },