Skip to content

Instantly share code, notes, and snippets.

@mads-hartmann
Created August 8, 2011 19:29
Show Gist options
  • Save mads-hartmann/1132511 to your computer and use it in GitHub Desktop.
Save mads-hartmann/1132511 to your computer and use it in GitHub Desktop.
just a scala file to show a syntax bug in chocolatapp
package org.lifty.engine
import java.io.File
import org.lifty.engine._
import scalaz._
import Scalaz._
/* This class is just used for debugging purposes */
object Main {
def main(args: Array[String]): Unit = {
LiftyInstance.run(args.toList).fold(
e => println(e.message),
s => println(s)
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment