first trial

This commit is contained in:
2024-11-09 08:39:09 +07:00
commit 793f9539de
7 changed files with 73 additions and 0 deletions

10
src/Main.java Normal file
View File

@@ -0,0 +1,10 @@
//TIP To <b>Run</b> code, press <shortcut actionId="Run"/> or
// click the <icon src="AllIcons.Actions.Execute"/> icon in the gutter.
public class Main {
public static void main(String[] args) {
//TIP Press <shortcut actionId="ShowIntentionActions"/> with your caret at the highlighted text
// to see how IntelliJ IDEA suggests fixing it.
System.out.println("OS Name : "+System.getProperty("os.name"));
System.out.println("OS Version : "+System.getProperty("os.version"));
}
}