Skip to content

Instantly share code, notes, and snippets.

View dmontay's full-sized avatar
💭
COVID coding

dmontay

💭
COVID coding
  • Sydney Australia
View GitHub Profile
@jstn
jstn / Timer.swift
Last active June 19, 2022 15:14
simple nanosecond timer using mach_absolute_time
/*
var t = Timer()
t.start()
// do something
t.stop()
print("took \(t.seconds)")
*/