8 lines
129 B
CoffeeScript
8 lines
129 B
CoffeeScript
|
|
#!/usr/bin/env coffee
|
||
|
|
|
||
|
|
main = () ->
|
||
|
|
program = __filename
|
||
|
|
console.log "Program: " + program
|
||
|
|
|
||
|
|
if not module.parent then main()
|