Upload files to "OOP/Java/Lab/Week1"

This commit is contained in:
aadit 2024-08-05 01:06:44 +05:30
parent 8542582101
commit 181f9113d2
2 changed files with 25 additions and 0 deletions

View file

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