summaryrefslogtreecommitdiff
path: root/inout.lua
blob: ad1c23de68b2a98b003ad282cbd72fc16f9c1f9e (plain)
1
2
3
4
5
6
7
8
9
10
local cal = require "cal"

local main = function (argv)
  local ok = cal.output (cal.parse_stdin ())

  return ok and 0 or -1
end

os.exit (main ())