Say I have the most basic CoffeeScript program possible that goes like:
console.log "Hello, World!"
But it's too complicated so I want to separate my program into multiple files.
#hello.coffee
console.log "Hello, #{stuff}!"
And
#stuff.coffee
stuff = "World"
What should be done to hello.coffee
to know the variable stuff
?
The catch of it is that I'd rather not have to do separate compiles to JS.