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.
16 lines
305 B
16 lines
305 B
project('string arithmetic', 'c') |
|
|
|
if 'foo' + 'bar' != 'foobar' |
|
error('String concatenation is broken') |
|
endif |
|
|
|
if 'foo' + 'bar' + 'baz' != 'foobarbaz' |
|
error('Many-string concatenation is broken') |
|
endif |
|
|
|
a = 'a' |
|
b = 'b' |
|
|
|
if a + b + 'c' != 'abc' |
|
error('String concat with variables is broken.') |
|
endif
|
|
|