diff options
author | Louis Pilfold <louis@lpil.uk> | 2024-01-18 17:47:12 +0000 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-01-18 17:47:12 +0000 |
commit | 3bfbe688f5a62e29835c7d3c4f282e7fff57949d (patch) | |
tree | 038cd1bf7a72949f7d68358ffd8af59d073ef70a /src/content/chapter5_advanced_features/lesson05_multi_target_externals | |
parent | f92661980deac22b54e79cd44c25caba17910c95 (diff) | |
download | tour-3bfbe688f5a62e29835c7d3c4f282e7fff57949d.tar.gz tour-3bfbe688f5a62e29835c7d3c4f282e7fff57949d.zip |
Rename
Diffstat (limited to 'src/content/chapter5_advanced_features/lesson05_multi_target_externals')
-rw-r--r-- | src/content/chapter5_advanced_features/lesson05_multi_target_externals/code.gleam | 11 | ||||
-rw-r--r-- | src/content/chapter5_advanced_features/lesson05_multi_target_externals/text.html | 22 |
2 files changed, 33 insertions, 0 deletions
diff --git a/src/content/chapter5_advanced_features/lesson05_multi_target_externals/code.gleam b/src/content/chapter5_advanced_features/lesson05_multi_target_externals/code.gleam new file mode 100644 index 0000000..b62a735 --- /dev/null +++ b/src/content/chapter5_advanced_features/lesson05_multi_target_externals/code.gleam @@ -0,0 +1,11 @@ +import gleam/io + +pub type DateTime + +@external(erlang, "calendar", "local_time") +@external(javascript, "./my_package_ffi.mjs", "now") +pub fn now() -> DateTime + +pub fn main() { + io.debug(now()) +} diff --git a/src/content/chapter5_advanced_features/lesson05_multi_target_externals/text.html b/src/content/chapter5_advanced_features/lesson05_multi_target_externals/text.html new file mode 100644 index 0000000..dc10a19 --- /dev/null +++ b/src/content/chapter5_advanced_features/lesson05_multi_target_externals/text.html @@ -0,0 +1,22 @@ +<p> + Multiple external implementations can be specified for the same function, + enabling the function to work on both Erlang and JavaScript. +</p> +<p> + If a function doesn't have an implementation for the currently compiled-for + target then the compiler will return an error. +</p> +<p> + You should try to implement functons for all targets, but this isn't always + possible due to incompatibilities in how IO and concurreny works in Erlang and + JavaScript. With Erlang concurrent IO is handled transparently by the runtime, + while in JavaScript concurrent IO requires the use of promises or callbacks. + If your code uses the Erlang style it is typically not possible to implement + in JavaScript, while if callbacks are used then it won't be compatible with + most Gleam and Erlang code as it forces any code that calls the function to + also use callbacks. +</p> +<p> + Libraries that make use of concurrent IO will typically have to decide whether + they support Erlang or JavaScript, and document this in their README. +</p> |