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

Latest commit

 

History

History
37 lines (32 loc) · 843 Bytes

README.md

File metadata and controls

37 lines (32 loc) · 843 Bytes

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