diff --git a/guide/as-slides.md b/guide/as-slides.md index ff30da6497b..96ebdb18d0a 100644 --- a/guide/as-slides.md +++ b/guide/as-slides.md @@ -5,11 +5,11 @@ A simple but useful language for writing DFINITY actors. -* High-level language for DFINITY dapps +* High-level language for Dfinity dapps * Simple design (K.I.S.S.) * Familiar syntax * Incorporating ~~actor~~ *canister* model -* Good fit for Wasm / DFINITY execution +* Good fit for Wasm / Dfinity execution * Forward looking (anticipating Wasm v.*X*) --- @@ -637,6 +637,13 @@ charlie.go("charlie", server); --- +### Language prelude + +* connects internal primitives with surface syntax (types, operations) +* conversions `intToWord32` +* side-effecting operations `printInt` (tie into execution environment) +* utilities `hashInt`, `clzWord32` + ### Implementation(s) * implemented in OCaml (leverages `wasm` libary)