Skip to content

Instantly share code, notes, and snippets.

@julienrf
Created April 12, 2011 08:30
Show Gist options
  • Save julienrf/915174 to your computer and use it in GitHub Desktop.
Save julienrf/915174 to your computer and use it in GitHub Desktop.
Bigtable template in Glitter
import glitter._
object Bigtable {
def template(table: Array[Array[Int]]) =
'table (
forM (table) (row =>
'tr :: forM (row) ('td :: _.toString)
)
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment