Browse Source

First try

master
hellhu71946 5 years ago
commit
f95f65ebd2
3 changed files with 26 additions and 0 deletions
  1. 6
    0
      .idea/vcs.xml
  2. 11
    0
      TurnUp Tracker.iml
  3. 9
    0
      src/HelloWorld.java

+ 6
- 0
.idea/vcs.xml View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

+ 11
- 0
TurnUp Tracker.iml View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

+ 9
- 0
src/HelloWorld.java View File

@@ -0,0 +1,9 @@
import static jdk.nashorn.internal.objects.Global.println;

public class HelloWorld {

public static void main(String[] args){
System.out.println("Hello World");
}
}


Loading…
Cancel
Save