commit 40b9fabc7f31bacb40830c6c96b0e98a0cde15ed Author: 250412 <250412@localhost> Date: Thu Nov 6 09:09:55 2025 +0000 comit inicial diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..a1173be --- /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..e57a8e3 --- /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 250412 + */ +public class PrimeiroGit { + + public static void main(String[] args) { + Scanner scanner = new Scanner(System.in); + System.out.println("Hello World!"); + } +}