This repository has been archived on 2024-06-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
coffee.pygments/tests/examplefiles/carbon/numbers.carbon

9 lines
No EOL
165 B
Text

package ExplorerTest api;
fn Main() -> i32 {
var i: auto = 1234567;
var h: auto = 0x1234abcd;
var b: auto = 0o1234567;
var o: auto = 0b111000;
return x;
}