diff options
Diffstat (limited to 'docs/markdown/Syntax.md')
-rw-r--r-- | docs/markdown/Syntax.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/markdown/Syntax.md b/docs/markdown/Syntax.md index 42002f4..5a6734d 100644 --- a/docs/markdown/Syntax.md +++ b/docs/markdown/Syntax.md @@ -64,6 +64,13 @@ Hexadecimal literals are supported since version 0.45.0: int_255 = 0xFF ``` +Octal and binary literals are supported since version 0.47.0: + +```meson +int_493 = 0o755 +int_1365 = 0b10101010101 +``` + Strings can be converted to a number like this: ```meson |