Skip to content

Instantly share code, notes, and snippets.

@vialyx
Last active September 17, 2018 16:21
Show Gist options
  • Save vialyx/dfc70695073fdd3a3c044fa681cb4d87 to your computer and use it in GitHub Desktop.
Save vialyx/dfc70695073fdd3a3c044fa681cb4d87 to your computer and use it in GitHub Desktop.
let now = Date()
var future = now
print("equal: \(now == future)")
// equal: true
future += 1 * 60 * 60
print("not equal: \(now == future)")
// not equal: false
future -= 2 * 60 * 60
print("now > future?: \(now > future)")
// now > future?: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment