Track |
Content |
Comments |
Basics |
Platforms, Programming, and Object Models |
Background information needed to develop code effectively |
C++ |
primitives, functions, classes, relationships, templates |
Source compiles to native code, good performance, safe by convention using library tools
|
Rust |
primitives, mutation, copy, move, structs, generics, safety |
Compiles to native code, good performance, safe by construction through compiler enforcements
|
C#
|
primitives, classes, generics, garbage collection
|
Source compiles to bitecode, jitted to native at run-time, memory safe by construction
|