commit 46e1272cc60bea8ea06ebe49a45aaba39e4d3c60 Author: helori_ollivier Date: Wed Dec 17 16:09:28 2025 +0100 initial commit diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..9528eca --- /dev/null +++ b/pom.xml @@ -0,0 +1,17 @@ + + + 4.0.0 + + bzh.risotto + TP3 + 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); + } + } +}