]> git.proxmox.com Git - ceph.git/blob - ceph/src/civetweb/src/third_party/duktape-1.3.0/examples/coffee/globals.coffee
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / civetweb / src / third_party / duktape-1.3.0 / examples / coffee / globals.coffee
1
2 print '*** All globals'
3 print(name) for name in Object.getOwnPropertyNames(this)
4
5 print '*** Globals with a short name (<= 8 chars)'
6 print(name) for name in Object.getOwnPropertyNames(this) when name.length <= 8
7