dplassgit / d2lang

D2 is a strongly-typed, statically-typed, (mostly) inferred-type compiled language.
MIT License
6 stars 1 forks source link

Printing longs or bytes don't reflect the input format #295

Closed dplassgit closed 8 months ago

dplassgit commented 8 months ago
ell = 0L
by = 0y00
println ell
println by

should produce

0L
0y00