1-module(io_columns).
2
3-export([main/1]).
4
5main(_) ->
6    io:format("~p",[io:columns()]).
7