errant/tacit

View on GitHub
src/Instruction/IO/Out.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php 
namespace Tacit\Instruction\IO;
/**
 * Output Type
 *
 * @author Tom Morton
 */
class Out extends \Tacit\Instruction\UnaryOperation {

    public $command = 'OUT';
    
    public function transform($operand, $vm)
    {
        echo $operand . "\n";
    }
}