-module(blah@fa@lorem). -compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]). -export([word/0, words/1, sentence/0, sentences/1, paragraph/0, paragraphs/1]). -file("/home/runner/work/blah/blah/src/blah/fa/lorem.gleam", 7). -spec word() -> binary(). word() -> blah@fa@string:pronounceable(). -file("/home/runner/work/blah/blah/src/blah/fa/lorem.gleam", 11). -spec words(integer()) -> binary(). words(Num) -> _pipe = gleam@list:repeat(<<""/utf8>>, Num), _pipe@1 = gleam@list:map(_pipe, fun(_) -> word() end), gleam@string:join(_pipe@1, <<" "/utf8>>). -file("/home/runner/work/blah/blah/src/blah/fa/lorem.gleam", 17). -spec sentence() -> binary(). sentence() -> Length = blah@utils:get_random_int(4, 16), _pipe = [words(Length), <<"."/utf8>>], gleam@string:join(_pipe, <<""/utf8>>). -file("/home/runner/work/blah/blah/src/blah/fa/lorem.gleam", 23). -spec sentences(integer()) -> binary(). sentences(Num) -> _pipe = gleam@list:repeat(<<""/utf8>>, Num), _pipe@1 = gleam@list:map(_pipe, fun(_) -> sentence() end), gleam@string:join(_pipe@1, <<" "/utf8>>). -file("/home/runner/work/blah/blah/src/blah/fa/lorem.gleam", 29). -spec paragraph() -> binary(). paragraph() -> Length = blah@utils:get_random_int(4, 8), _pipe = gleam@list:repeat(<<""/utf8>>, Length), _pipe@1 = gleam@list:map(_pipe, fun(_) -> sentence() end), gleam@string:join(_pipe@1, <<" "/utf8>>). -file("/home/runner/work/blah/blah/src/blah/fa/lorem.gleam", 36). -spec paragraphs(integer()) -> binary(). paragraphs(Num) -> _pipe = gleam@list:repeat(<<""/utf8>>, Num), _pipe@1 = gleam@list:map(_pipe, fun(_) -> paragraph() end), gleam@string:join(_pipe@1, <<"\n"/utf8>>).