Literals/Integer: Difference between revisions

Content deleted Content added
Jjuanhdez (talk | contribs)
Literals/Integer en Yabasic
Razetime (talk | contribs)
add bqn
Line 548:
Output:
126 32
 
=={{header|BQN}}==
BQN only supports base ten integer literals. There are some things to note, however:
 
A high minus must be used instead of a plain minus for negative numbers (also a feature of APL):
<lang bqn>¯5
¯3000</lang>
 
Underscores are ignored in numeric literals in general.
<lang bqn>1_000_000</lang>
 
=={{header|Bracmat}}==