-module(stdin_test). -compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]). -export([main/0]). -spec main() -> list(binary()). main() -> _pipe = stdin:stdin(), _pipe@1 = gleam@iterator:to_list(_pipe), gleam@io:debug(_pipe@1).