Symbol (programming): Difference between revisions

Content deleted Content added
Copyvio revdel completed (RR)
Support: PostScript
Line 26:
|-
| [[PICAXE]] [[BASIC]] || symbol || <code> symbol let name = variable </code>
|-
| [[PostScript]] || name || <code>/sym</code> or <code>sym</code>
|-
| [[Prolog (programming language)|Prolog]] || atom, symbol || <code>sym</code> or <code>'sym'</code>
Line 90 ⟶ 92:
#:uninterned-symbol
</syntaxhighlight>
 
===PostScript===
In [[PostScript]], references to ''name'' objects can be either ''literal'' or ''executable'', influencing the behaviour of the interpreter when encountering them. The <code>cvx</code> and <code>cvl</code> operators can be used to convert between the two forms. When names are constructed from strings by means of the <code>cvn</code> operator, the set of allowed characters is unrestricted.
 
===Prolog===