Current section
Files
Jump to
Current section
Files
src/blah@word.erl
-module(blah@word).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function]).
-export([verb/0, preposition/0, noun/0, interjection/0, conjunction/0, adverb/0, adjective/0]).
-spec verb() -> binary().
verb() ->
blah@en@word:verb().
-spec preposition() -> binary().
preposition() ->
blah@en@word:preposition().
-spec noun() -> binary().
noun() ->
blah@en@word:noun().
-spec interjection() -> binary().
interjection() ->
blah@en@word:interjection().
-spec conjunction() -> binary().
conjunction() ->
blah@en@word:conjunction().
-spec adverb() -> binary().
adverb() ->
blah@en@word:adverb().
-spec adjective() -> binary().
adjective() ->
blah@en@word:adjective().