mirror of
https://github.com/atom/atom.git
synced 2026-01-23 22:08:08 -05:00
9 lines
244 B
CoffeeScript
9 lines
244 B
CoffeeScript
# Like sands through the hourglass, so are the days of our lives.
|
|
date = new Date().getTime()
|
|
require 'atom'
|
|
require 'window'
|
|
|
|
window.setUpEnvironment('editor')
|
|
window.startEditorWindow()
|
|
console.log "Load time: #{new Date().getTime() - date}"
|