Skip to content

Instantly share code, notes, and snippets.

@prolativ
Created July 4, 2022 11:59
Show Gist options
  • Save prolativ/44d4a0216389835e3325044d197395a5 to your computer and use it in GitHub Desktop.
Save prolativ/44d4a0216389835e3325044d197395a5 to your computer and use it in GitHub Desktop.
//> using scala "3.2.0-RC1"
//> using lib "org.scala-lang.modules::scala-xml:2.1.0"
trait Renderer[A]:
def render(x: A): xml.Elem
given Renderer[Int] with
def render(x: Int) = <td>{ x.toString }</td>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment