commit d6242c84589a18a24f4206ebb83642d4300d1c0a Author: helori_ollivier Date: Tue Mar 10 14:43:11 2026 +0100 initial commit diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..60d1169 --- /dev/null +++ b/pom.xml @@ -0,0 +1,17 @@ + + + 4.0.0 + + bzh.risotto + Minesweeper + 1.0-SNAPSHOT + + + 25 + 25 + UTF-8 + + + \ No newline at end of file diff --git a/src/main/java/bzh/risotto/Main.java b/src/main/java/bzh/risotto/Main.java new file mode 100644 index 0000000..2cf69e6 --- /dev/null +++ b/src/main/java/bzh/risotto/Main.java @@ -0,0 +1,17 @@ +package bzh.risotto; + +//TIP To Run code, press or +// click the icon in the gutter. +public class Main { + static void main() { + //TIP Press with your caret at the highlighted text + // to see how IntelliJ IDEA suggests fixing it. + IO.println(String.format("Hello and welcome!")); + + for (int i = 1; i <= 5; i++) { + //TIP Press to start debugging your code. We have set one breakpoint + // for you, but you can always add more by pressing . + IO.println("i = " + i); + } + } +}