diff options
Diffstat (limited to 'gen/iodata.erl')
-rw-r--r-- | gen/iodata.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gen/iodata.erl b/gen/iodata.erl index 0eaaca2..9704413 100644 --- a/gen/iodata.erl +++ b/gen/iodata.erl @@ -1,9 +1,10 @@ -module(iodata). +-compile(no_auto_import). -export([prepend/2, append/2, from/1, to_string/1, byte_size/1]). prepend(A, B) -> - gleam__stdlib:iodata_prepend(A, B). + gleam__stdlib:iodata_concat(A, B). append(A, B) -> gleam__stdlib:iodata_append(A, B). |