This commit is contained in:
kowalikto76735 2019-11-21 13:04:03 +01:00
commit 9d5de23a55
2 changed files with 19 additions and 0 deletions

11
scopify.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>

8
src/hello.java Normal file
View File

@ -0,0 +1,8 @@
public class hello {
public static void main(String[] args){
System.out.println("Hello");
}
}