mirror of
https://github.com/atom/atom.git
synced 2026-04-06 03:02:13 -04:00
10 lines
268 B
CoffeeScript
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"
|