First try

This commit is contained in:
hellhu71946 2018-11-09 12:29:51 +01:00
commit f95f65ebd2
3 changed files with 26 additions and 0 deletions

6
.idea/vcs.xml generated Normal file
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
TurnUp Tracker.iml Normal file
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
src/HelloWorld.java Normal file
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");
}
}