This page is written for people who are new to Norscode and want to understand how to actually get started programming. The goal is to give you a concrete and practical guide that takes you from the first file to a simple working result.
The most important rule for beginners is to start simple. Create one file, write one function and run it. Do not try to learn everything at once.
funksjon start() -> heltall {
skriv("Hello from Norscode")
returner 0
}
bin/nc run hello.no
bin/nc check hello.no
bin/nc test tests.no
bin/nc build hello.no
The most important commands at the beginning are run and check.
Norscode uses functions, readable syntax and clear structure. Learn one small concept at a time: variables, conditions, loops and functions.