loalang 0.1.15

Loa is a general-purpose, purely immutable, object-oriented programming language.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace InheritedVariables.

export class Main {
  public run =>
    let Super super = Sub of: "Hello World!".
    super variable.
}

export class Super {
  public var String variable.
}

export class Sub {
  is Super.

  public init of: String value =>
    variable: value.
}