Added new lines to puts statement in 'equal' example

This commit is contained in:
mollusk 2017-05-31 13:47:33 -07:00
parent fc42ce611e
commit b818dc6c35

View File

@ -78,9 +78,9 @@ sequence mystring
mystring = "hello" mystring = "hello"
if equal(mystring, "hello") then if equal(mystring, "hello") then
puts(1,"The condition is true!") puts(1,"The condition is true!\n")
else else
puts(1,"The condition is false!") puts(1,"The condition is false!\n")
end if end if
``` ```
---------------- ----------------