Getting Started
The best way to begin with scpp is the same way you begin with most languages: get the tool working, compile a tiny program, and then try the same idea in a small project layout.
In this chapter, we will do exactly three things:
- build the compiler from source;
- compile and run a one-file “Hello, world!” program;
- create the smallest useful manifest-based project and build it with
scpp build.
You do not need to understand ownership, borrowing, or
[[scpp::unsafe]] in depth yet. The goal here is to get a
real program onto your screen first. Later chapters will explain why the
language behaves the way it does.