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
This one actually comes up a lot: new programmers get confused about this.
syntax automatically strips quotes from string options. For instance, for this program:
program say
syntax, this(string)
display "`this'"
end
the following two commands result in the same output:
say, this("Hello world")
say, this(Hello world)
However, syntax does not strip quotes from string asis options. Further, for syntax anything, it does not strip quotes from anything'`: anything' is like ``0' in this way.
The text was updated successfully, but these errors were encountered:
This one actually comes up a lot: new programmers get confused about this.
syntax
automatically strips quotes fromstring
options. For instance, for this program:the following two commands result in the same output:
However,
syntax
does not strip quotes fromstring asis
options. Further, forsyntax anything
, it does not strip quotes fromanything'`:
anything'is like ``0'
in this way.The text was updated successfully, but these errors were encountered: