Skip to content

Instantly share code, notes, and snippets.

/foo.ml Secret

Created January 8, 2016 19:57
open Lexing
open Lexer
open Parser
open Printf
let fromString str =
let lexbuf = Lexing.from_string str in
let result = Parser.main Lexer.main lexbuf in
printf "test";
str
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment