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
##Example
The following determines if string s contains a period. After the for statement, found will be true if there is a period in s.
var found : boolean := false
for i : 1 .. length (s)
if s = "." then
found := true
end if
end for
##Details
true/false values are called boolean values. A boolean variable, such as found in the above example, can have a value of either true or false.