summaryrefslogtreecommitdiff
path: root/mnml
diff options
context:
space:
mode:
Diffstat (limited to 'mnml')
-rw-r--r--mnml10
1 files changed, 10 insertions, 0 deletions
diff --git a/mnml b/mnml
new file mode 100644
index 0000000..ae5f43c
--- /dev/null
+++ b/mnml
@@ -0,0 +1,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);