Skip to content

Instantly share code, notes, and snippets.

View mylons's full-sized avatar

Mike Lyons mylons

  • Incline Village, NV
View GitHub Profile
try {
BufferedReader in = new BufferedReader(new FileReader(pwd + "Makefile"));
String str;
while((str = in.readLine()) != null)
System.out.println(str);
in.close();
} catch (FileNotFoundException e) {