first commit

This commit is contained in:
LinlyBoi
2021-11-06 23:35:03 +02:00
commit 63ba32bb3c
27 changed files with 498 additions and 0 deletions

15
file.java Normal file
View File

@@ -0,0 +1,15 @@
import java.io.File;
class Scratch {
public static void main(String[] args)
{
File file = new File("ggsleeb_wisdom.txt");
if(file.exists())
{
System.out.println("File exists O:");
System.out.println(file.getPath());
System.out.println(file.getAbsolutePath());
}
}
}