def println[A]()

in src/main/scala/com/adamnfish/eek/Printer.scala [20:26]


  def println[A](a: A)(implicit S: Show[A] = Show.fromToString[A]): F[Unit]
  def formatter: Formatter
}

/** Prints the content to the terminal.
  */
class ConsolePrinter[F[_]: Console] extends Printer[F] {