Literals/Integer: Difference between revisions

Add Plain English
(Added EasyLang implementation)
(Add Plain English)
Line 1,755:
1101b /* a binary integer, of value decimal 13. */
</syntaxhighlight>
 
=={{header|Plain English}}==
Plain English has two types of numerical literals. The first is the ordinary "number literal", which is expressed in base ten.
<syntaxhighlight lang="text">
12345
-12345 \ with a negative sign
+12345 \ with a positive sign
</syntaxhighlight>
 
The second is the "nibble literal", which is a dollar sign followed by a hexadecimal literal.
<syntaxhighlight lang="text">$12345DEADBEEF</syntaxhighlight>
 
=={{header|PostScript}}==
175

edits