summaryrefslogtreecommitdiff
path: root/docs/markdown/Syntax.md
AgeCommit message (Collapse)Author
2018-12-19docs: Add warning about not using join_paths() with build targets [skip ci]Dylan Baker
This comes up now and again when people try do do something like: meson.build: ```meson my_sources = ['foo.c'] subdir('subdir') executable('foo', my_sources) ``` subdir/meson.build: ```meson my_sources += ['bar.c'] ```
2018-12-04Can specify keyword arguments with a dict.Jussi Pakkanen
2018-10-04Add documentation and release notes for 'in', 'continue' and 'break'Xavier Claessens
2018-09-20syntax guide: move logical ops section beside if statement [skip ci]Bruce Richardson
The "if" statement only covers a small set of the possible ways in which conditionals can be written, since it leaves the use of "and", "or" and "not" to the "Logical Operations" section. However, this is likely to be of interest to those reading about "if" statments, so move the "logical operations" section up to immediately follow it. This change also puts in the use of the "!=" operator in the example to widen the variety of combinations shown.
2018-06-06docs: Fix dictionary syntax [skip ci]Yudi Matsuzake
2018-05-23Document octal and binary integer literals in syntax.Filipe Brandenburger
Also add a release notes snippet for it.
2018-05-22dict: add since annotationsMathieu Duponchelle
2018-05-20dict: Document, add release snippetMathieu Duponchelle
2018-04-21Add more tests for multi-line strings and update docsNirbheek Chauhan
2018-04-17Complete python escape sequences aware stringsTim 'mithro' Ansell
Fixes #3169
2018-02-05Add support for hex int literals.Jussi Pakkanen
2017-11-19Fix literal backslash syntaxLucas Werkmeister
In CommonMark, there are no backslash escapes in code spans, so only two backslashes in the source document are necessary to produce two backslashes in the output document.
2017-11-11Cleanupping.Jussi Pakkanen
2017-10-23Fix invalid example in Syntax.mdJonas Platte
2017-07-31doc: describe joining strings using the + symbolBruce Richardson
2017-07-24Fix wording about array immutabilityNirbheek Chauhan
2017-07-24Clarify array immutability and document indexingNirbheek Chauhan
2017-06-07Improve user-defined function wording & link to FAQTim Hutt
2017-06-07Document that user-defined functions and methods are unsupportedTim
Fixes #1870
2017-06-03Add a note about multi-line statements by ending the line with \Tim
2017-05-11Update Syntax.mdliberforce
Fix variable name
2017-04-26docs: Import the website and wiki and build with hotdocThibault Saunier
This allows us to more easily have the documentation in sync with the source code as people will have to document new features etc right at the time where they implement it.