blob: ae5f43cc32f1434a75e5e9b60258a7af1be1ab18 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
require "vendor/autoload.php";
use Mnml\Lexer\Lexer;
$input = file_get_contents(__DIR__ . "/test/test.mnml");
$lexer = new Lexer($input);
$tokens = $lexer->lex();
#var_dump($tokens);
|