Skip to content

Instantly share code, notes, and snippets.

@gozzoo
Created February 18, 2021 07:57
Show Gist options
  • Save gozzoo/64435d0ccd5f9cbd63119da8f2b44bbe to your computer and use it in GitHub Desktop.
Save gozzoo/64435d0ccd5f9cbd63119da8f2b44bbe to your computer and use it in GitHub Desktop.
import Foundation
let now = Date()
let tomorrow = now.addingTimeInterval(86400)
let range = now ... tomorrow
print(range.contains(now))
print(tomorrow)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment