Initial commit
This commit is contained in:
14
bin/app.php
Normal file
14
bin/app.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
use Automata\Machine;
|
||||
use Automata\Tool;
|
||||
|
||||
require_once __DIR__ . '/../vendor/autoload.php';
|
||||
|
||||
$machine = new Machine();
|
||||
$machine->toolMemory->save(new Tool(1, 5500, 2));
|
||||
$machine->toolMemory->save(new Tool(2, 3000, 61379));
|
||||
(new ProgramLoader)->loadPrograms($machine);
|
||||
|
||||
$machine->loadProgram(9002);
|
||||
$machine->start();
|
||||
Reference in New Issue
Block a user