Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions guide/as-slides.md
Original file line number Diff line number Diff line change
Expand Up @@ -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*)

---
Expand Down Expand Up @@ -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)
Expand Down