Title here
Summary here
Our first program will print the classic “hello world” message. Here’s the full source code.
To run the program, put the code in a file named hello-world.rkt
and use the Racket interpreter to execute it.
Sometimes we’ll want to compile our programs into bytecode files that can be executed directly. We can do this using Racket’s raco
command.
First, compile the code:
We can then execute the compiled binary directly.
Now that we can run and build basic Racket programs, let’s learn more about the language.