#!/usr/bin/env julia

using JET

let
    file = first(ARGS)

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

    report_file(file)
end
