Skip to content
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.

LonnonDev/Solis

Repository files navigation

Solis

contributions welcome

Solis is a Programming Language which Type is being Thought of

Current Ideas

  • Object Oriented
  • Lazy Evaluation
  • Statically Typed
  • Interpreted

Releases Here.

Features

Variables

Variables can be declared like this

var <name> = <value>

and used like this

|<varname>|

Types

The current types are

  • String
    • "<data>"
  • Integer (No Floating Point Value)
    • <Any Number without a Decimal
  • Boolean
    • True or False

Printing

outln prints with a newline after, takes arg string

out prints without a newline after, takes arg string