mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
25 lines
442 B
Markdown
25 lines
442 B
Markdown
# Prototyping Luau
|
|
|
|
An experimental prototyping system for the Luau type system. This is
|
|
intended to allow core language features to be tested quickly, without
|
|
having to interact with all the features of production Lua.
|
|
|
|
## Building
|
|
|
|
First install Haskell and Agda.
|
|
|
|
Install dependencies:
|
|
```
|
|
cabal update
|
|
cabal install --lib aeson
|
|
```
|
|
|
|
Then compile
|
|
```
|
|
agda --compile Main.agda
|
|
```
|
|
|
|
and run!
|
|
```
|
|
echo '{"some": "JSON"}' | ./Main
|
|
```
|