RosettaCodeData/Task/Literals-Integer/V-(Vlang)/literals-integer.v

8 lines
92 B
Coq
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
fn main() {
w := 727
x := 0x2d7
y := 0o1327
z := 0b10110_10111
println([w, x, y, z])
}