コード例 #1
0
ファイル: Machine.java プロジェクト: iataylor/codeExamples
 @Override
 public void execute() {
   if (table.exists(name)) stack.push(table.get(name));
   else {
     Errors.error("Variable does not exist.", table);
   }
 }