#!/usr/bin/env julia

using JET

let
    file = first(ARGS)

    isfile(file) || error("$(file) doesn't exist")

    display(report_file(file))
end
