13 lines
321 B
Java
13 lines
321 B
Java
package com.example.demo;
|
|
|
|
public class DemoApplication {
|
|
public static void main(String[] args) {
|
|
System.out.println("Hello from DemoApplication!");
|
|
System.out.println(new java.util.Date());
|
|
System.out.println("Nowa gałąź new_feature");
|
|
System.out.println("Hello from new_feature2 branch!");
|
|
|
|
|
|
}
|
|
}
|