-module(prog).
-export([main/0]).

main() ->
    io:fwrite( "~p\n",[lists:seq(0, 5, 1)])
    ,io:fwrite( "~p\n",[lists:seq(0, 5, 1.0)] )
    .