-- Our first Ada program! with Ada.Text_IO; procedure hello is begin Ada.Text_IO.put_line("Hello students in ITEC 320!"); Ada.Text_IO.put_line("I hope you have a great semester!"); end hello; // Java equivalent: public class Hello{ public static void main(String args[]){ System.out.println("Hello"); System.out.println("Have a great semester!"); } }