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/11 object arithmetic | |
parent | 9ce01c16f409208ca17235efee602a71da9712de (diff) | |
download | meson-702148aea515b5c7b2d6004615a7f4a635a7ca1e.zip meson-702148aea515b5c7b2d6004615a7f4a635a7ca1e.tar.gz meson-702148aea515b5c7b2d6004615a7f4a635a7ca1e.tar.bz2 |
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/11 object arithmetic')
-rw-r--r-- | test cases/failing/11 object arithmetic/meson.build | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test cases/failing/11 object arithmetic/meson.build b/test cases/failing/11 object arithmetic/meson.build new file mode 100644 index 0000000..34e3a7a --- /dev/null +++ b/test cases/failing/11 object arithmetic/meson.build @@ -0,0 +1,3 @@ +project('object arithmetic') + +foo = '5' + meson |