Hello world/Newbie: Difference between revisions

no edit summary
m (added a ;Task: (bold) header, moved an OMIT to the top of the preamble.)
No edit summary
Line 491:
./hello.x
</pre>
 
=={{header|FutureBasic}}==
 
=== Requirements ===
Macintosh OS X v10.4 or newer
 
=== Download FutureBasic (FB) ===
FutureBasic is freeware and is commonly called simply "FB" by its developers. The lastest version of FutureBasic can be downloaded from [[http://4toc.com/fb/index.htm]]. The FB site also contains installation instructions, example files, older versions, and other helpful information.
 
=== FB Support Group ===
An active list group of developers who are knowledgable, friendly and helpful to both seasoned and newcomer coders can be found at [[http://freegroups.net/groups/futurebasic/]]. Answers to any of a host of questions about FB are answered quickly by this small, but dedicated group of developers.
 
=== FB on Wikipedia ===
The FB Wikipedia page describing FB's journey from one of earliest commercial Macintosh compilers to its current freeware status can be visited at: [[https://en.wikipedia.org/wiki/FutureBASIC]]. This page may not have the latest information about FB, so the authoritative source for the latest information is the FB web site and list group listed above.
 
=== Your First Program ===
When you have downloaded and installed FB, you will want to compile your first program, the traditional "Hello, World!"
 
1. Launch FB and from the File menu select New File.
 
2. Name your file "Hello, World!" and save it to your Desktop.
 
3. In the window type the following:
 
<lang futurebasic>
include "ConsoleWindow
 
print"Goodbye, World!"
</lang>
 
4. From FB's Command menu, select Build and Run "Hello, World!"
 
Enjoy your first program!
 
 
=={{header|Go}}==
750

edits