fork download
  1. using System;
  2.  
  3. namespace Balloons_Pops_Game_Variant_Four
  4. {
  5. public class GameMessages
  6. {
  7. public static string startNewGame =
  8. "Welcome to “Balloons Pops” game. Please try to pop the balloons." +
  9. " Use 'top' to view the top scoreboard, 'restart' to start a new game" +
  10. " and 'exit' to quit the game.";
  11.  
  12. public static string enterRowAndColumn = "Enter a row and column: ";
  13.  
  14. public static string invalidMoveOrCommand = "Invalid move or command!";
  15.  
  16. public static string emptyScoreboard = "The scoreboard is empty";
  17.  
  18. public static string illegalMove = "Illegal move: cannot pop missing ballon!";
  19.  
  20. public static string congratulationsMessage =
  21. "Congratulations! You popped all baloons in {0} moves.";
  22.  
  23. public static string enterNameForTopScoreboard =
  24. "Please enter your name for the top scoreboard: ";
  25.  
  26. public static string scoreboardMessage = "Scoreboard:";
  27.  
  28. public static string goodbyeMessage = "Good bye!";
  29. }
  30. }
  31.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
error CS5001: Program `prog.exe' does not contain a static `Main' method suitable for an entry point
Compilation failed: 1 error(s), 0 warnings
stdout
Standard output is empty