Compiled language produce a native binary before execution.
- Raw source code gets translated into Machine Code before execution.
Some of the popular compiled languages:
- Rust
- Go
- C
- C++
- Swift
- Zig
Rust
flowchart LR A[".rs"] --> B["Machine Code"] B --> C["Binary"] C --> D["Run"]
Go
flowchart LR A[".go"] --> B["Machine Code"] B --> C["Binary"] C --> D["Run"]
C
flowchart LR A[".c"] --> B["Machine Code"] B --> C["Binary"] C --> D["Run"]
C++
flowchart LR A[".c++"] --> B["Machine Code"] B --> C["Binary"] C --> D["Run"]
