This commit is contained in:
2024-10-08 13:46:16 +03:00
parent 232e2bf47f
commit b09c332067
7 changed files with 92 additions and 0 deletions

13
labs/lab1/Simple.java Normal file
View File

@ -0,0 +1,13 @@
// ********************************************
// Simple.java
//
// Print a simple message about Java.
//
// ********************************************
public class Simple
{
public static void main (String[] args)
{
System.out.println ("Java rocks!!");
}
}