mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
13 lines
283 B
CoffeeScript
13 lines
283 B
CoffeeScript
# Contributed by Jason Huggins
|
|
|
|
sys: require 'sys'
|
|
http: require 'http'
|
|
|
|
server: http.createServer (req, res) ->
|
|
res.writeHeader 200, {'Content-Type': 'text/plain'}
|
|
res.write 'Hello, World!'
|
|
res.close()
|
|
|
|
server.listen 3000
|
|
|
|
sys.puts "Server running at http://localhost:3000/"
|