solilang 0.21.1

A statically-typed, class-based OOP language with pipeline operators
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Example .env file for Soli
# Lines starting with # are comments

DATABASE_URL=postgres://user:password@localhost:5432/mydb
API_KEY=sk-1234567890abcdef
DEBUG=true
PORT=8080

# Optional configuration
OPTIONAL_VAR=

# Quoted values
GREETING="Hello, World!"
MULTI_WORD=hello world test

# Can reference other variables (basic)
SIMPLE_VAR=simple_value