Skip to content

Instantly share code, notes, and snippets.

@mberndt123
Created November 5, 2018 18:08
Show Gist options
  • Save mberndt123/664c38500dcddccca51566e967203312 to your computer and use it in GitHub Desktop.
Save mberndt123/664c38500dcddccca51566e967203312 to your computer and use it in GitHub Desktop.
import cats.effect.IO
class C {
private[this] var i = 0
val get = IO(i)
val inc = IO(i += 1)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment