Skip to content

Instantly share code, notes, and snippets.

@eirikb
Created November 2, 2011 12:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eirikb/1333470 to your computer and use it in GitHub Desktop.
Save eirikb/1333470 to your computer and use it in GitHub Desktop.
Lett da
my.test-lib: {
a: 'hello',
b: 'world',
c: 1337,
t: true,
f: false,
inner.object: 'Works!',
my.very-inner.object: 7,
nesting-test: +(1 2 3 -(6 1)),
string-test: str('hello' ', ' 'world'),
test-fn.add[a b]: +(a b),
test-add: my.test-lib.test-fn.add(30 12)
}
my {
test-lib: {
a: 'hello',
b: 'world',
c: 1337,
t: true,
f: false,
inner {
object: 'Works!'
},
my {
very-inner {
object: 7
}
},
nesting-test: 11,
string-test: 'hello, world',
test-fn.add[a b]: [Function],
test-add: 42
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment