This commit is contained in:
2025-12-29 20:08:05 +03:00
commit 2b788a4f79
3 changed files with 51 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
package ru.ldeloff.currenttime;
public class CurrentTime {
public static void main(String[] args) {
System.out.println("Current time: " + java.time.LocalDateTime.now());
}
}