errant/tacit

View on GitHub
src/Instruction/Command/End.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php 
namespace Tacit\Instruction\Command;
/**
 * End Program
 *
 * @author Tom Morton
 */
class End extends \Tacit\Instruction {

    public $command = 'END';

    public function execute($vm)
    {
        $vm->terminate();
    }
}