20 lines
377 B
Java
20 lines
377 B
Java
/*
|
|
* 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!");
|
|
}
|
|
}
|