This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ELVYN MEJIA | |
706 London Street, San Francisco, CA | 415-609-4345 | [email protected] | www.elvynmejia.com | |
EDUCATION | |
San Francisco State University —San Francisco, CA, U.S. | |
Bachelor of Science, Computer Science—Expected May 2015 | |
Minor in Criminal Justice Studies | |
City College of San Francisco—San Francisco, CA, U.S. | |
Associates in Science Administration of Justice—Fall 2012 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package interpreter; | |
import interpreter.bytecodes.ByteCode; | |
import java.io.*; | |
import java.util.*; | |
public class ByteCodeLoader { | |
private BufferedReader byteCodeFile; | |
private String nextLine; |