Created
November 7, 2013 15:04
-
-
Save sebnozzi/7356072 to your computer and use it in GitHub Desktop.
Frames for a progressing Hangman game. In case we need this for a Dojo.
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
import scala.collection.mutable.Buffer | |
val frames = Buffer[String]() | |
frames += """ | |
> _______ | |
> |/ | | |
> | | |
> | | |
> | | |
> | | |
> | | |
> jgs_|___""".stripMargin('>') | |
frames += """ | |
> _______ | |
> |/ | | |
> | (_) | |
> | | |
> | | |
> | | |
> | | |
> jgs_|___""".stripMargin('>') | |
frames += """ | |
> _______ | |
> |/ | | |
> | (_) | |
> | | | |
> | | | |
> | | |
> | | |
> jgs_|___""".stripMargin('>') | |
frames += """ | |
> _______ | |
> |/ | | |
> | (_) | |
> | \| | |
> | | | |
> | | |
> | | |
> jgs_|___""".stripMargin('>') | |
frames += """ | |
> _______ | |
> |/ | | |
> | (_) | |
> | \|/ | |
> | | | |
> | | |
> | | |
> jgs_|___""".stripMargin('>') | |
frames += """ | |
> _______ | |
> |/ | | |
> | (_) | |
> | \|/ | |
> | | | |
> | / | |
> | | |
> jgs_|___""".stripMargin('>') | |
frames += """ | |
> _______ | |
> |/ | | |
> | (_) | |
> | \|/ | |
> | | | |
> | / \ | |
> | | |
> jgs_|___""".stripMargin('>') | |
// END | |
frames.foreach( f => println(f) ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment