Literals/Integer: Difference between revisions

m
no edit summary
(add RPL)
mNo edit summary
Line 2,344:
End Sub</syntaxhighlight>
 
=={{header|V (Vlang)}}==
<syntaxhighlight lang="Vlang">
fn main() {
w := 727
x := 0x2d7
y := 0o1327
z := 0b10110_10111
println([w, x, y, z])
}
</syntaxhighlight>
 
{{out}}
<pre>
[727, 727, 727, 727]
</pre>
 
=={{header|Wren}}==
291

edits