Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 388 Bytes

0.1.0.md

File metadata and controls

25 lines (19 loc) · 388 Bytes

Package Names

import cronish._
import dsl._

// NOT cronish related...
import scalendar._
import Scalendar.now

val reminder = job(prinln(now))

val active = reminder starts (println("Starting..."))

active runs "every 5 seconds" exactly 5.times

/* Prints out:
Starting...
2011-09-25 9:51:05
2011-09-25 9:51:10
2011-09-25 9:51:15
2011-09-25 9:51:20
2011-09-25 9:51:25
*/