Intro.java

import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;

public class Intro {
    static void main(String[] args) {
    System.out.println("Welcome to jorge.party!");
  try {
      File file = new File("introduction.txt");
      Scanner scanner = new Scanner(file);
      while (scanner.hasNextLine()) {
        System.out.println(scanner.nextLine());
      }
      scanner.close();
    } catch (FileNotFoundException e) {
      System.out.println("File not found: " + e.getMessage());
    }
  }
}