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.

namespaces.l2 144B

123456789101112
  1. obj := {
  2. foo: "hello world"
  3. }
  4. print obj.foo
  5. obj.foo = 100
  6. print obj.foo
  7. obj.bar = {baz: "how's your day going?"}
  8. print obj.bar.baz
  9. print {}