mumu 0.10.0

Lava Mumu is a language for those in the now and that know
Documentation
extend("string")

sput( string:to_string(123) ) // "123"

sput( string:to_string([1,2,3])) // "[1, 2, 3]"

sput( string:to_string(13.4444) )

# Keyed

sput(
  string:to_string(
    [ name:"Bob", age:"42", isCool:"yes" ]
  )
)

// { name: "Bob", age: "42", isCool: "yes" }