aboutsummaryrefslogtreecommitdiff
path: root/src/iodata.gleam
diff options
context:
space:
mode:
authorLouis Pilfold <louis@lpil.uk>2019-02-03 00:08:30 +0000
committerLouis Pilfold <louis@lpil.uk>2019-02-03 00:08:30 +0000
commitfeadf9b0bf553f5195cc82e3303c187a2f0a5c30 (patch)
tree5ebb4da05f57ff381b3cca28794495dce6fa6a2e /src/iodata.gleam
parent501e5029131d40d6b279df316ab6bb3cd64b936a (diff)
downloadgleam_stdlib-feadf9b0bf553f5195cc82e3303c187a2f0a5c30.tar.gz
gleam_stdlib-feadf9b0bf553f5195cc82e3303c187a2f0a5c30.zip
Update examples to remove atoms
Diffstat (limited to 'src/iodata.gleam')
-rw-r--r--src/iodata.gleam12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/iodata.gleam b/src/iodata.gleam
index 285a99d..f42f86e 100644
--- a/src/iodata.gleam
+++ b/src/iodata.gleam
@@ -5,19 +5,19 @@ import any
pub external type Iodata;
pub external fn prepend(Iodata, String) -> Iodata =
- 'gleam__stdlib' 'iodata_prepend';
+ "gleam__stdlib" "iodata_prepend";
pub external fn append(Iodata, String) -> Iodata =
- 'gleam__stdlib' 'iodata_append';
+ "gleam__stdlib" "iodata_append";
pub external fn of(String) -> Iodata =
- 'gleam__stdlib' 'identity';
+ "gleam__stdlib" "identity";
pub external fn from(List(String)) -> Iodata =
- 'gleam__stdlib' 'identity';
+ "gleam__stdlib" "identity";
pub external fn to_string(Iodata) -> String =
- 'erlang' 'iolist_to_binary';
+ "erlang" "iolist_to_binary";
pub external fn byte_size(Iodata) -> Int =
- 'erlang' 'iolist_size';
+ "erlang" "iolist_size";