-module(blah@lorem). -compile(no_auto_import). -export([word/0, words/1, slug/1, sentence/0, sentences/1, paragraph/0, paragraphs/1]). -spec word() -> binary(). word() -> blah@en@lorem:word(). -spec words(integer()) -> binary(). words(Num) -> blah@en@lorem:words(Num). -spec slug(integer()) -> binary(). slug(Num) -> blah@en@lorem:slug(Num). -spec sentence() -> binary(). sentence() -> blah@en@lorem:sentence(). -spec sentences(integer()) -> binary(). sentences(Num) -> blah@en@lorem:sentences(Num). -spec paragraph() -> binary(). paragraph() -> blah@en@lorem:paragraph(). -spec paragraphs(integer()) -> binary(). paragraphs(Num) -> blah@en@lorem:paragraphs(Num).