Skip to content

Commit

Permalink
actually printing points
Browse files Browse the repository at this point in the history
  • Loading branch information
schauder committed Jan 11, 2014
1 parent 93cfdd6 commit db9de97
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/de/schauderhaft/architecture/example/ConsoleStuff.java
Expand Up @@ -11,7 +11,13 @@ public static void main(String[] args) {
System.out.println("Spiel gestartet!");
System.out.print("Runde 1 Eingabe: ");
String input = makeInput();
System.out.println(input + " bringt XXX Punkte! Gesamt: XXX");
System.out.println(input + " bringt " + machMalPunkte(input)
+ " Punkte! Gesamt: XXX");
}

private static int machMalPunkte(String input) {
return 42;

}

private static String makeInput() {
Expand Down

0 comments on commit db9de97

Please sign in to comment.