The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
406 B
15 lines
406 B
project('array arithmetic', 'c') |
|
|
|
array1 = ['foo', 'bar'] |
|
array2 = ['qux', 'baz'] |
|
|
|
if array1 + array2 != ['foo', 'bar', 'qux', 'baz'] |
|
error('Array concatenation is broken') |
|
endif |
|
if array2 + array1 != ['qux', 'baz', 'foo', 'bar'] |
|
error('Array concatenation is broken') |
|
endif |
|
|
|
if array1 + array1 + array1 != ['foo', 'bar', 'foo', 'bar', 'foo', 'bar'] |
|
error('Many-array concatenation is broken') |
|
endif
|
|
|