Difference between revisions of "Sign"

From Free Pascal wiki
Jump to navigationJump to search
(English translation of German page)
 
m (Fix wiki markup :-)
 
Line 28: Line 28:
 
|-
 
|-
 
| % || Interprets the following number as a binary number. <br/> (This does not apply in every compiler mode ).
 
| % || Interprets the following number as a binary number. <br/> (This does not apply in every compiler mode ).
 
+
|}
  
 
== See also ==
 
== See also ==

Latest revision as of 12:59, 17 January 2020

Deutsch (de) English (en)


Character(s) Description
Comment characters
// everything following on the line is a comment
(* start of comment; comment may be one or more lines
*) end of comment
{ start of comment; comment may be one or more lines
} end of comment


Signs for the interpretation of numbers
Character Description
# Interprets the following number as a character
$ Interprets the following number as a hexadecimal number
% Interprets the following number as a binary number.
(This does not apply in every compiler mode ).

See also