Literals/Integer: Difference between revisions

add bqn
(Literals/Integer en Yabasic)
(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}}==
236

edits