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
namespace PrivateMethods.

class Test {
  private method => 123.

  public x => self method.

  public y => Test method.
}

class Other {
  public x => Test method. //$ `PrivateMethods/Test#method` is private.
}