Remove meaningless test.ml

This commit is contained in:
백현웅 2022-02-01 21:42:12 +09:00
parent 1dbc3f5264
commit 8093af06a7

View file

@ -1,5 +0,0 @@
let test_lex =
let open Token in
let t = Lex.tokenize "10 + 20 30/40" |> List.of_seq in
assert (t = [Int 10; Plus; Int 20; Int 30; Slash; Int 40])