Meteo Engine class

This commit is contained in:
sigonasr2, Sig, Sigo 2021-09-16 05:53:11 +00:00
commit 1ea1db2e11
4 changed files with 14 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
bin

4
gitpod.yml Normal file
View File

@ -0,0 +1,4 @@
vscode:
extensions:
- redhat.java
- vscjava.vscode-java-pack

2
run Executable file
View File

@ -0,0 +1,2 @@
javac src/sig/*.java -d bin
java -cp bin sig/Meteo

7
src/sig/Meteo.java Normal file
View File

@ -0,0 +1,7 @@
package sig;
public class Meteo {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}