Nasal Hello World

From FlightGear wiki
Revision as of 14:44, 12 January 2020 by Hooray (talk | contribs) (add a GUI example for fg versions that no longer show a console)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.


In the programming world, a "Hello, World!" program This is a link to a Wikipedia article is used to illustrate basic syntax using a very simple program. The "Hello, World!" program in Nasal would look like this (run this in the Nasal Console):

print("Hello, World!");

This will print the string Hello, World! into the console.

To show a message inside the FlightGear window using a tooltip instead, use the following snippet:

gui.popupTip("Hello, World!",3);