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.
8 lines
101 B
8 lines
101 B
3 years ago
|
project('test list add', meson_version: '>=0.59.0')
|
||
|
|
||
|
l1 = [1, 2, 3]
|
||
|
l2 = l1 + 4
|
||
|
l2 += 5
|
||
|
|
||
|
message(l2)
|