parent
707e721dd3
commit
e37424c9e1
4 changed files with 15 additions and 9 deletions
@ -1,3 +1,3 @@ |
|||||||
project('object arithmetic') |
project('object arithmetic', 'c') |
||||||
|
|
||||||
foo = '5' + meson |
foo = '5' + meson |
||||||
|
@ -1,3 +1,3 @@ |
|||||||
project('string arithmetic') |
project('string arithmetic', 'c') |
||||||
|
|
||||||
foo = 'a' / 'b' |
foo = 'a' + 3 |
||||||
|
@ -1,3 +1,3 @@ |
|||||||
project('array arithmetic') |
project('array arithmetic', 'c') |
||||||
|
|
||||||
foo = ['a', 'b'] * ['6', '4'] |
foo = ['a', 'b'] * 3 |
||||||
|
Loading…
Reference in new issue