├── LICENSE.txt ├── README.md ├── .gitignore ├── GIT-Testing.iml └── src └── Main.java /LICENSE.txt: -------------------------------------------------------------------------------- 1 | This is LICENSE 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## GIT-Testing 2 | 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | /out 3 | GIT-Testing.iml 4 | -------------------------------------------------------------------------------- /GIT-Testing.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/Main.java: -------------------------------------------------------------------------------- 1 | /* 2 | * * ------------------------------------------------------------------------------------------------------------------ 3 | * * * Copyright (c) GIT-Testing. All rights reserved. 4 | * * * Licensed under the SriLankan Information License. See License.txt in the project root for license information. 5 | * * ------------------------------------------------------------------------------------------------------------------ 6 | */ 7 | 8 | /** 9 | * @author Mindula Dilthushan 10 | * @since 9/18/2021 11 | **/ 12 | 13 | public class Main { 14 | public static void main(String[] args) { 15 | System.out.println("Hello Mindula"); 16 | } 17 | 18 | 19 | } 20 | --------------------------------------------------------------------------------