Files
atom/src/window-bootstrap.coffee
2013-09-24 20:53:57 -07:00

10 lines
268 B
CoffeeScript

# Like sands through the hourglass, so are the days of our lives.
startTime = new Date().getTime()
require './atom'
require './window'
window.setUpEnvironment('editor')
window.startEditorWindow()
console.log "Window load time: #{new Date().getTime() - startTime}ms"