Advertisement
Guest User

beeroclock

a guest
Jul 12th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scala 0.37 KB | None | 0 0
  1. LocalDateTime.now.until(
  2.   LocalDateTime.now.`with`(LocalTime.of(15, 0)).`with`(TemporalAdjusters.nextOrSame(DayOfWeek.FRIDAY)),
  3.   ChronoUnit.MILLIS
  4. ) match {
  5.   case ticks if ticks >= 0 => println(s"It's $ticks milliseconds until beer o'clock!")
  6.   case ticks if ticks < 0 => println(s"It has been beer o'clock for ${ticks * -1} milliseconds! :o Time to get wrecked!")
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement