commit c61d9265731660eaaf1527116fdbd18623c5e983 Author: 250418 <250418@localhost> Date: Thu Nov 6 09:09:55 2025 +0000 commit inicial diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..bd4f566 --- /dev/null +++ b/pom.xml @@ -0,0 +1,13 @@ + + + 4.0.0 + com.mycompany + primeiroGIT + 1.0-SNAPSHOT + jar + + UTF-8 + 24 + com.mycompany.primeirogit.PrimeiroGIT + + \ No newline at end of file diff --git a/src/main/java/com/mycompany/primeirogit/PrimeiroGIT.java b/src/main/java/com/mycompany/primeirogit/PrimeiroGIT.java new file mode 100644 index 0000000..06607da --- /dev/null +++ b/src/main/java/com/mycompany/primeirogit/PrimeiroGIT.java @@ -0,0 +1,19 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + */ + +package com.mycompany.primeirogit; + +import java.util.Scanner; + +/** + * + * @author 250418 + */ +public class PrimeiroGIT { + + public static void main(String[] args) { + Scanner scanner = new Scanner(System.in); + System.out.println("Hello World!"); + } +}