Skip to content

Instantly share code, notes, and snippets.

View DragonMeistah's full-sized avatar

DragonMeistah

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)")
*/