Added inital code
parent
11e671ffa2
commit
1b82d84457
|
@ -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>
|
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/sh
|
||||||
|
git add *
|
||||||
|
git commit
|
||||||
|
git push -u origin main
|
||||||
|
git push -u tpgc main
|
|
@ -0,0 +1,5 @@
|
||||||
|
public class Main {
|
||||||
|
public static void main(String[] args) {
|
||||||
|
System.out.println("Hello world!");
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
package chess;
|
||||||
|
|
||||||
|
public class Board {
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
package chess;
|
||||||
|
|
||||||
|
public abstract class ChessPiece {
|
||||||
|
|
||||||
|
public abstract void move();
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue