forked from solstice/solstice
Fixes, rebrand
This commit is contained in:
14
README.md
14
README.md
@@ -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!"
|
||||
}
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user