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