Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
HAL/S
(section)
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
==Example== The following is a simple HAL/S program.<ref>{{cite book |last1=Ryer |first1=Michael |title=Programming in HAL/S |date=September 1978 |publisher=NASA |page=2β1 |url=http://www.bitsavers.org/pdf/intermetrics/programming_in_hal-s.pdf}}</ref> Every program begins with a labeled <code>PROGRAM</code> statement; the label consists of an identifier followed by a colon. All variables must be declared in the <code>DECLARE</code> group, which precedes any executable statements. Every program ends with a <code>CLOSE</code> delimiting statement. <pre> SIMPLE: PROGRAM; C CODE IN THIS TYPEFACE IS C HAL/S SOURCE DECLARE PI CONSTANT (3.14159266); DECLARE R SCALAR; READ(5) R; WRITE(6) PI R**2; CLOSE SIMPLE; </pre>
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)