https://git.jolheiser.com/cuesonnet.git
1 2 3 4 5 6 7 8 9 10 11
local name = 'Jim'; local age = 45; local userData = function(name, age) { firstName: name, lastName: name + 'bly', age: age, birthday: '01/02/2003', }; userData(name, age)