freek
freek copied to clipboard
In Readme, PRG instantiation should be a val not an object
In Readme:
type PRG = Log :|: KVS :|: File :|: FXNil
object PRG = Program[PRG]
should be
type PRG = Log :|: KVS :|: File :|: FXNil
val PRG = Program[PRG]