Literals/Integer: Difference between revisions

Content deleted Content added
→‎{{header|HicEst}}: Marked incorrect. The only numeric ''literal'' shown is 727
→‎{{header|PowerShell}}: another suffix note
Line 546:
3GB # 3221225472
3TB # 3298534883328</lang>
A number can be suffixed with <code>d</code> to make it a <code>decimal</code>. This doesn't work in conjunction with above suffixes, though:
<pre>PS> 4d.GetType().ToString()
System.Decimal</pre>
 
=={{header|PureBasic}}==
PureBasic allows integer literals to be specified in base 10, base 2 by using the prefix '%', or base 16 by using the prefix '$'.