Skip to content

Instantly share code, notes, and snippets.

@mariack
Created March 26, 2015 01:08
Show Gist options
  • Save mariack/2f65dacff345fef6ccf7 to your computer and use it in GitHub Desktop.
Save mariack/2f65dacff345fef6ccf7 to your computer and use it in GitHub Desktop.
package Assignments;
public class HangmanDemo
{
public static void main(String[] args)
{
Hangman word;
word = new Hangman();
word.setSecretWord();
word.makeGuesses();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment