aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/integer-base.md
blob: 0a27c9afe3c5f171ce191bbe67559edc554158c5 (plain)
1
2
3
4
5
6
7
8
9
## Octal and binary string literals

Octal and binary integer literals can now be used in build and option files.

```meson
int_493 = 0o755
int_1365 = 0b10101010101
```