commit 878294c8ef9bca86b8b964237104944af2fb21a7 Author: Hubert Światek Date: Tue Oct 21 13:38:05 2025 +0200 Initial commit diff --git a/Lab1/.gitignore b/Lab1/.gitignore new file mode 100644 index 0000000..5ff6309 --- /dev/null +++ b/Lab1/.gitignore @@ -0,0 +1,38 @@ +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ + +### IntelliJ IDEA ### +.idea/modules.xml +.idea/jarRepositories.xml +.idea/compiler.xml +.idea/libraries/ +*.iws +*.iml +*.ipr + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ +!**/src/main/**/build/ +!**/src/test/**/build/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file diff --git a/Lab1/.idea/.gitignore b/Lab1/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/Lab1/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/Lab1/.idea/encodings.xml b/Lab1/.idea/encodings.xml new file mode 100644 index 0000000..aa00ffa --- /dev/null +++ b/Lab1/.idea/encodings.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Lab1/.idea/misc.xml b/Lab1/.idea/misc.xml new file mode 100644 index 0000000..001e756 --- /dev/null +++ b/Lab1/.idea/misc.xml @@ -0,0 +1,14 @@ + + + + + + + + + + \ No newline at end of file diff --git a/Lab1/pom.xml b/Lab1/pom.xml new file mode 100644 index 0000000..9db90d3 --- /dev/null +++ b/Lab1/pom.xml @@ -0,0 +1,17 @@ + + + 4.0.0 + + org.example + Lab1 + 1.0-SNAPSHOT + + + 23 + 23 + UTF-8 + + + \ No newline at end of file diff --git a/Lab1/src/main/java/org/example/Main.java b/Lab1/src/main/java/org/example/Main.java new file mode 100644 index 0000000..a02700f --- /dev/null +++ b/Lab1/src/main/java/org/example/Main.java @@ -0,0 +1,17 @@ +package org.example; + +//TIP To Run code, press or +// click the icon in the gutter. +public class Main { + public static void main(String[] args) { + //TIP Press with your caret at the highlighted text + // to see how IntelliJ IDEA suggests fixing it. + System.out.printf("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 . + System.out.println("i = " + i); + } + } +} \ No newline at end of file diff --git a/demo b/demo new file mode 160000 index 0000000..2654516 --- /dev/null +++ b/demo @@ -0,0 +1 @@ +Subproject commit 265451685ed11a8110cf67bdf82985c703ce9199 diff --git a/demo.zip b/demo.zip new file mode 100644 index 0000000..0141b1f Binary files /dev/null and b/demo.zip differ