Skip to content

Instantly share code, notes, and snippets.

@blackode
Last active May 6, 2019 12:04
Show Gist options
  • Save blackode/2904f29be2a9b514ff90c761d481c325 to your computer and use it in GitHub Desktop.
Save blackode/2904f29be2a9b514ff90c761d481c325 to your computer and use it in GitHub Desktop.
Terminal height and width ... elixir
defmodule TerminalWidthHeight do
def term_dimensionns do
{:ok,width} = :io.columns
{:ok,height} = :io.rows
IO.inspect {width,height}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment