mers/examples/destructuring_assignment.mers

13 lines
212 B
Plaintext
Raw Normal View History

x := "https:\//www.google.com"
x.debug()
[a, [b, c]] := [1, ["str", 12.5]]
println("---")
println(a.to_string() + " " + b + " " + c.to_string())
println("~~~")
// switch! run_command("curl", [x, ...]) {
// }