Beispiel #1
0
int main(int argc, char* argv[]){
    if(argc==1){
        cout << "Usage: bbi filename" << endl;
    }
    convert_to_internalCode(argv[1]);  //ファイル名を渡し、内部コードに変換
    syntaxChk();    //構文チェック
    execute();      //BBIインタプリンタ実行
}
void RunMode_Compile(char *pPath){	/* Custom, 컴파일 모드로 실행 */
	convert_to_internalCode(pPath);
	syntaxChk();
	execute();
}