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