aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 7dbc965972a704be8ecb6300a39afdee1bd26ea1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
[![Gitter](https://badges.gitter.im/LuxProgrammingLanguage/community.svg)](https://gitter.im/LuxProgrammingLanguage/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)

## What is Lux?

Lux is a new programming language in the making.

It's meant to be a functional, statically-typed Lisp that will run on several platforms, such as the Java Virtual Machine and JavaScript, Python, Lua, or Ruby interpreters.

### What's the current version?

0.6.4

### How far ahead is the project?

Lux is in the **beta** stage.

The JVM compiler is pretty stable and the standard library has grown to a respectable size.

Also, new experimental support for JavaScript, Python, Lua, and Ruby has been added.

### What's the license?

[Custom License](license.txt)

Read carefully before using this project, as the license disallows commercial use, and has other conditions which may be undesirable for some.

However, commercial use is allowed for patrons under the terms of the [Patron License](PATRON_LICENSE.md).

You can become a patron by supporting Lux through [Patreon](https://www.patreon.com/lux_programming_language).

## What's interesting about the language?

### Inspirations

The language is mostly inspired by the following 3 languages:

* Clojure (syntax, overall look & feel)
* Haskell (functional programming)
* Standard ML (module system)

### Types

They are implemented as plain-old data-structures whose expressions get eval'ed by the compiler and integrated into the type-checker.

That means it's actually possible to generate types via functions and macros.

### Module system

The module system is heavily inspired by Standard ML.

The main difference between Lux and Standard ML is that Standard ML separates interfaces/signatures and implementations/structures from the rest of the language, whereas Lux implements them on top of the base language.

How?

By implementing interfaces/signatures as record-types and implementations/structures as actual records.

##### But, why not just use type-classes?

Haskell's type-class system forces the user to only specify 1 instance for any given type-class and its argument.

If there are more than 1 possible valid instances (as is the case for Monoid of Int), you have to resort to _newtype hacks_ to be able to provide alternative implementations.

By using a system like Standard ML's, that problem is averted.

Additionally, by hosting the module system on top of records, which are regular values, you get the further benefit that structures can be parameterized at run-time just like any other value.

You can also write functions that take and return structures (as _functors_ do in Standard ML), and you can generate structures on the fly.

> Also, Lux now offers a mechanism for easy polymorphism, just like Haskell's type-classes, but built upon its module system, thanks to the `library/lux/type/auto` module and its `##` macro.

> You can learn more about that by reading the book and the documentation.

### Functional programming

While the means to do Java-interop are provided, Lux is commited to functional programming.

Functions are curried and partial application is as simple as just applying a function to less arguments than it needs (as in Haskell).

e.g.

```
... Add 1 to each number in the list.
(each (+ 1) (list 1 2 3 4 5))
```

### Macros

Unlike in most other lisps, Lux macros are monadic.

The `(Meta a)` type is the one responsible for the magic by threading `Lux` compiler-state instances through macros.

You can use `macro:` to define these monadic macros.

Alternatively, you can use the `syntax:` macro, which also offers monadic parsing of Code tokens for convenience.

### Custom pattern-matching

##### Wait... wut?

Custom pattern-matching basically means that you can use macros to provide custom syntax and features on top of the pattern-matching macro `case`.

For instance, the `list` and `list&` macros are used to build lists.

But you can also use them to destructure lists inside pattern-matching:

```
... Try to pattern-match against a list, extract its elements and multiply them.
(: (Maybe Nat)
   (case (: (List Nat)
            (list 2 3))
     {#Item x {#Item y {#End}}}
     {#Some (* x y)}

     _
     {#None}))

(: (Maybe Nat)
   (case (: (List Nat)
            (list 2 3))
     (^ (list x y))
     {#Some (* x y)}
   
     _
     {#None}))
```

There is also the special **^or** macro, which introduces *or patterns*:

```
(type: Weekday
  (Variant
    {#Monday}
    {#Tuesday}
    {#Wednesday}
    {#Thursday}
    {#Friday}
    {#Saturday}
    {#Sunday})))

... Returns TRUE if it's either Saturday OR Sunday.
(def: (weekend? day)
  (-> Weekday Bit)
  (case day
    (^or {#Saturday}
         {#Sunday})
    true

    _
    false))
```

> Please note that `^` and `^or` are just macros like any other and anyone can implement them.

### Is there a community for this?

Say hi at Gitter: https://gitter.im/LuxProgrammingLanguage/community

Come join the forum: https://lux.hedgewit.ch/forum/

> There is also an older forum at: http://luxlang.freeforums.net/

If you want to communicate with me directly, just email: luxlisp@gmail.com

### How can I edit Lux code?

Check out the Emacs plugin for it: https://github.com/LuxLang/lux/tree/master/lux-mode

### Where do I learn Lux?

The main resource is [the book](documentation/book/the_lux_programming_language/index.md).

It will always be up-to-date with the latest stable version of the language.

Also, you can check out [the documentation for the currently available modules](documentation/library/standard/jvm.md).

### How can I contribute?

For starters, you can check out the [Trello board](https://trello.com/b/VRQhvXjs/lux-jvm-compiler) for Lux development.

I'll be putting there tasks that people can contribute to; both in the compiler and outside (like plugins for editors).

Writing libraries in Lux will also help a lot in making this a more practical language for day to day use.

##### Copyright (c) 2014-2022 Eduardo Julian. All rights reserved.