Skip to content

Instantly share code, notes, and snippets.

View dsheets's full-sized avatar

David Sheets dsheets

  • Cambridge, UK
View GitHub Profile
@dsheets
dsheets / Timer.swift
Last active August 12, 2016 18:28 — forked from jstn/Timer.swift
simple nanosecond timer using mach_absolute_time
/*
var t = Timer()
t.start()
// do something
t.stop()
println("took \(t.seconds)")
*/