5 lines
56 B
ChaiScript
5 lines
56 B
ChaiScript
var x = List()
|
|
x.push_back(3)
|
|
x.push_back("A")
|
|
print(x)
|