mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
9 lines
265 B
Text
9 lines
265 B
Text
import Semantics.Purify
|
|
|
|
def main (args : List String) : IO Unit := do
|
|
if args.length < 2 then
|
|
IO.println "Usage: purify <input_json> <output_json>"
|
|
else
|
|
let input := args[0]!
|
|
let output := args[1]!
|
|
Semantics.Purify.runPurification input output
|