Fixes, rebrand

This commit is contained in:
2025-12-20 15:09:09 +11:00
parent c04e631180
commit 72ec9c1fb6
11 changed files with 132 additions and 126 deletions

View File

@@ -1,22 +1,20 @@
# High Ground
# Solstice
High Ground is a programming language based on Ground.
It is the reference language designed to teach you how to build your own Ground-based language.
Solstice is a programming language based on Ground.
## Compiling
First, ensure CGround is installed on your system with `sudo make install`. Then, compile with
```
g++ src/main.cpp -o hg -lgroundvm
g++ src/main.cpp -o solstice -lgroundvm
```
## Usage
High Ground files use the `.hg` extension. Run files as you would with any other interpreted language.
Solstice files use the `.sols` extension. Run files as you would with any other interpreted language.
## Using High Ground
## Using Solstice
### Types
@@ -80,7 +78,7 @@ if password == "password123" {
puts "Your password is insecure."
}
if password = "dingus" {
if password == "dingus" {
puts "Cool password!"
}
```