diff options
| author | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-11-08 01:41:05 +0000 |
|---|---|---|
| committer | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-11-16 16:45:10 +0000 |
| commit | 702148aea515b5c7b2d6004615a7f4a635a7ca1e (patch) | |
| tree | 7594171a735bea6ac32cdd5da337dfbeee789e92 /test cases/failing/13 array arithmetic | |
| parent | 9ce01c16f409208ca17235efee602a71da9712de (diff) | |
| download | meson-702148aea515b5c7b2d6004615a7f4a635a7ca1e.tar.gz | |
Add number, string and array arithmetic
Addition (+), subtraction (-), multiplication (*) and division (/) for numbers
follows the BIDMAS rules.
Strings and arrays can be concatenated with the addition operator
Strings can be concatenated with numbers with the addition operator
Diffstat (limited to 'test cases/failing/13 array arithmetic')
| -rw-r--r-- | test cases/failing/13 array arithmetic/meson.build | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test cases/failing/13 array arithmetic/meson.build b/test cases/failing/13 array arithmetic/meson.build new file mode 100644 index 000000000..ceaa8bc08 --- /dev/null +++ b/test cases/failing/13 array arithmetic/meson.build @@ -0,0 +1,3 @@ +project('array arithmetic') + +foo = ['a', 'b'] * ['6', '4'] |
