Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 804 Bytes

README.md

File metadata and controls

27 lines (23 loc) · 804 Bytes

420-110-DW Prog I Dawson College

Java source code

The code here is for 420-110-DW Programming I - Java course held in Fall 2020

compiling

First Install the JRE & JDK and Dr. Java Use Dr java to compile & run. The UI is fairly simple to use.

command line compile

compile to create the bytecode, .class file

tricia@acerubuntu1804:~/simple-java$ javac FileName.java 
tricia@acerubuntu1804:~/simple-java$ ls 
FileName.class  FileName.java

run

tricia@acerubuntu1804:~/simple-java$ java FileName
Hello World!  from Java

Older repos