Skip to content
Open
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
8 changes: 4 additions & 4 deletions website/content/slides/01_dragons/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -322,15 +322,15 @@ WebAssembly is actually an IR.
- AOT - less overhead, faster startup, generally better performance
- JIT - better chance for optimizations, since some of the program arguments
will be constants once the program has started, some of the virtual calls can
be devirtuallized at runtime
be devirtualized at runtime

---
## Transpiler

> Takes program written in one language and translates that to another language.

- cfront
- CoffeScript, TypeScript
- CoffeeScript, TypeScript
- nim

---
Expand Down Expand Up @@ -363,7 +363,7 @@ collection and most of the standard library of the language.
- code generation is a bit harder, but the machine is more efficient

---
### RPN as an interperter
### RPN as an interpreter

Calculating an expression using postfix notation is actually an interpreter for
expressions.
Expand All @@ -389,7 +389,7 @@ expressions.
### Crash course in JSImpl

- repository organization
- continous integration
- continuous integration
- pull requests

---
Expand Down