defmodule Compilers do # TODO @doc "Creates a random file in /tmp/kethel-TIME/, which functions as a pipe writing the given `data`" @spec tempdata(binary()) :: binary() defp tempdata(data) do end @doc "Invokes the fxg compiler on `data`. provides the output as a binary" def fxg(path) do end end