You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
##Description
StatementsAndDeclarations are a list of statements and declarations. For example, a Turing program consists of a list of statements and declarations. The body of a procedure is a list of statements and declarations.
Each statementOrDeclaration is one of:
See also statement and declaration.
(a) statement
(b) declaration
##Example
This list of statements and declarations is a Turing program that outputs Hello Frank.
var name : string
name := "Frank"
put "Hello ", name