mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-06 16:57:04 +08:00
7 lines
84 B
ChaiScript
7 lines
84 B
ChaiScript
load_module("stl_extra")
|
|
|
|
var x = List()
|
|
x.push_front(3)
|
|
x.push_front("A")
|
|
print(x)
|