Created
August 8, 2011 19:29
-
-
Save mads-hartmann/1132511 to your computer and use it in GitHub Desktop.
just a scala file to show a syntax bug in chocolatapp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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