Skip to content

Commit bb9f9c7

Browse files
committed
start
0 parents  commit bb9f9c7

File tree

8 files changed

+361
-0
lines changed

8 files changed

+361
-0
lines changed

.idea/encodings.xml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

Lines changed: 312 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

KursJava.iml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module type="JAVA_MODULE" version="4">
3+
<component name="NewModuleRootManager" inherit-compiler-output="true">
4+
<exclude-output />
5+
<content url="file://$MODULE_DIR$">
6+
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
7+
</content>
8+
<orderEntry type="inheritedJdk" />
9+
<orderEntry type="sourceFolder" forTests="false" />
10+
</component>
11+
</module>
607 Bytes
Binary file not shown.

src/start/Hello.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
package start;
2+
3+
import javax.swing.*;
4+
5+
public class Hello {
6+
7+
public static void main(String[] args) {
8+
//for (int i = 0; i < 10; i++){
9+
//System.out.println("Hello World"+ i);}
10+
//System.out.println("Skrót sout");
11+
//JOptionPane.showMessageDialog(null ,"Hello World");
12+
System.out.println(System.getProperty("java.runtime.version"));
13+
}
14+
}

0 commit comments

Comments
 (0)