2022-07-08 14:59:45 +03:00
* Juvix
2022-03-28 18:32:09 +03:00
2022-06-30 17:33:23 +03:00
#+begin_html
2022-07-08 14:59:45 +03:00
<a href="https://github.com/anoma/juvix/actions/workflows/ci.yml" >
<img alt="CI status" src="https://github.com/anoma/juvix/actions/workflows/ci.yml/badge.svg" / >
2022-06-30 17:33:23 +03:00
</a >
#+end_html
2022-08-06 13:52:01 +03:00
#+begin_html
<a href="https://github.com/anoma/juvix/actions/workflows/pages/pages-build-deployment" ><img
src="https://github.com/anoma/juvix/actions/workflows/pages/pages-build-deployment/badge.svg"
alt="pages-build-deployment" /></a >
#+end_html
2022-06-30 17:33:23 +03:00
#+begin_html
2022-07-08 14:59:45 +03:00
<a href="https://github.com/anoma/juvix/tags" >
<img alt="" src="https://img.shields.io/github/v/release/anoma/juvix?include_prereleases" / >
2022-06-30 17:33:23 +03:00
</a >
#+end_html
2022-03-28 18:32:09 +03:00
#+begin_html
2022-07-08 14:59:45 +03:00
<a href="https://github.com/anoma/juvix/blob/main/LICENSE" >
2022-03-28 18:32:09 +03:00
<img alt="LICENSE" src="https://img.shields.io/badge/license-GPL--3.0--only-blue.svg" / >
</a >
#+end_html
2022-04-08 14:35:04 +03:00
#+begin_html
2022-07-08 14:59:45 +03:00
<a href="https://github.com/anoma/juvix" >
<img align="right" width="300" height="300" alt="Juvix Mascot" src="assets/seating-mascot.051c86a.svg" / >
2022-04-08 14:35:04 +03:00
</a >
#+end_html
2022-03-25 20:10:17 +03:00
** Description
2022-07-08 14:59:45 +03:00
Juvix is a research programming language created by [[https://heliax.dev/ ][Heliax ]] as a first step toward creating more robust and reliable alternatives for formally verified smart contracts than existing languages. The Juvix language is constantly evolving, open-source, functional, and statically typed with special support for compiling [[https://anoma.network/blog/validity-predicates/ ][validity predicates ]] to the =C= language, which can be deployed to various distributed ledgers including [[https://anoma.net/ ][Anoma ]].
2022-06-30 17:33:23 +03:00
2022-09-01 12:54:38 +03:00
The Juvix language and related tools are documented in [[https://anoma.github.io/juvix/ ][the Juvix book ]]. To write
and test Juvix programs, you can use your favorite text editor and the =juvix=
command line tool. However, we recommend using the =juvix-mode= in [[https://docs.juvix.org/tooling/emacs-mode.html ][Emacs ]] or the
plugin in [[https://marketplace.visualstudio.com/items?itemName=heliax.juvix-mode ][VSCode ]].
2022-03-25 20:10:17 +03:00
2022-08-06 13:52:01 +03:00
** [[https://github.com/anoma/juvix/tree/main/examples/milestone][First examples of programs written in Juvix]]
2022-07-19 19:43:16 +03:00
2022-08-06 13:52:01 +03:00
The following links are clickable versions of their corresponding Juvix programs. The HTML output is generated by running =juvix html --recursive FileName.juvix= .
2022-07-19 19:43:16 +03:00
2022-08-08 13:07:50 +03:00
- [[https://docs.juvix.org/examples/html/HelloWorld/HelloWorld.html ][HelloWorld.juvix ]]
2022-07-19 19:43:16 +03:00
- [[https://docs.juvix.org/examples/html/Fibonacci/Fibonacci.html ][Fibonacci.juvix ]]
2022-08-10 14:02:14 +03:00
- [[https://docs.juvix.org/examples/html/Hanoi/Hanoi.html ][Hanoi.juvix ]]
- [[https://docs.juvix.org/examples/html/PascalsTriangle/PascalsTriangle.html ][PascalsTriangle.juvix ]]
2022-08-04 13:50:30 +03:00
- [[https://docs.juvix.org/examples/html/Collatz/Collatz.html ][Collatz.juvix ]]
- [[https://docs.juvix.org/examples/html/TicTacToe/CLI/CLI.TicTacToe.html ][TicTacToe.juvix ]]
- [[https://docs.juvix.org/examples/html/ValidityPredicates/SimpleFungibleToken.html ][SimpleFungibleToken.juvix ]]
2022-07-19 19:43:16 +03:00
2022-08-06 13:52:01 +03:00
The [[https://anoma.github.io/juvix-stdlib/ ][Juvix standard library ]] contains
common functions that can be used in Juvix programs.
2022-07-14 12:41:58 +03:00
2022-09-01 12:54:38 +03:00
** Installation
2022-03-25 20:10:17 +03:00
2022-09-01 12:54:38 +03:00
*** MacOS
2022-08-06 13:52:01 +03:00
2022-09-01 12:54:38 +03:00
The easiest way to install Juvix on MacOS is by using [[https://brew.sh ][Homebrew ]].
2022-08-06 13:52:01 +03:00
To install the [[https://github.com/anoma/homebrew-juvix ][homebrew-juvix tap ]], run:
#+begin_src shell
brew tap anoma/juvix
#+end_src
To install Juvix, run:
#+begin_src shell
brew install juvix
#+end_src
Helpful information on the shell can also be obtained by running:
#+begin_src shell
brew info juvix
#+end_src
2022-09-01 12:54:38 +03:00
*** Linux x86_64
2022-08-06 13:52:01 +03:00
2022-09-01 12:54:38 +03:00
A binary executable is available on the [[https://github.com/anoma/juvix/releases/latest ][Juvix release page ]].
*** Building Juvix from source
To install Juvix from source you must clone the [[https://github.com/anoma/juvix.git ][Github repository ]]. Then Juvix
can be installed with the following commands. We assume you have [[https://haskellstack.org ][Stack ]]
installed.
2022-03-25 20:10:17 +03:00
#+begin_src shell
2022-07-08 14:59:45 +03:00
git clone --recursive https://github.com/anoma/juvix.git
cd juvix
2022-05-13 10:40:04 +03:00
stack install
2022-03-25 20:10:17 +03:00
#+end_src
2022-09-01 12:54:38 +03:00
On MacOS you can alternatively run the following command for Homebrew. The flag
=--HEAD= used below is optional, use it to build the latest version of Juvix in
2022-08-06 13:52:01 +03:00
the =main= branch on Github.
#+begin_src shell
brew install --build-from-source --HEAD juvix --verbose
#+end_src
2022-03-25 20:10:17 +03:00
2022-09-01 12:54:38 +03:00
** Quick Start
After installation run =juvix --help= to see the list of commands available. See
[[https://docs.juvix.org/getting-started/quick-start.html#cli-usage-examples ][CLI usage examples ]] for descriptions of common tasks.
Run Juvix doctor to check your system setup:
#+begin_src shell
juvix doctor
#+end_src
*** The Hello World example
2022-04-01 12:15:32 +03:00
2022-08-31 20:29:06 +03:00
This is the Juvix source code of the traditional Hello World program.
2022-08-08 13:07:50 +03:00
#+begin_src shell
-- HelloWorld.juvix
module HelloWorld;
open import Stdlib.Prelude;
main : IO;
main ≔ putStrLn "hello world!";
end;
#+end_src
2022-08-31 20:29:06 +03:00
To compile and run a binary generated by Juvix, save the source code to a file
called =HelloWorld.juvix= and run the following command from the directory
containing it:
2022-04-04 19:30:38 +03:00
#+begin_src shell
2022-08-08 13:07:50 +03:00
juvix compile HelloWorld.juvix
2022-08-31 20:29:06 +03:00
./HelloWorld
2022-04-04 19:30:38 +03:00
#+end_src
2022-06-14 11:42:13 +03:00
You should see the output: =hello world!=
2022-04-04 19:30:38 +03:00
2022-08-31 20:29:06 +03:00
The source code can also be compiled to a WebAssembly binary. This requires some
additional setup. See [[https://anoma.github.io/juvix/getting-started/dependencies.html ][Installing dependencies ]] in the documentation for more
information. You can also run =juvix doctor= to check your setup.
#+begin_src shell
juvix compile --target wasm HelloWorld.juvix
wasmer HelloWorld.wasm
#+end_src
2022-08-06 13:52:01 +03:00
** The Juvix programming language
2022-04-04 19:30:38 +03:00
2022-08-06 13:52:01 +03:00
Juvix allows us to write programs with a high degree of assurance. The Juvix
compiler runs several static analyses during the compilation phase to guarantee
no runtime errors. Analyses permormed during this phase include scope,
termination, arity, and type checkiqng. As a result, functional programs,
especially validity predicates, can be written with greater confidence that they
will be free of runtime errors.
Some of the language features in Juvix include:
- unicode syntax
- parametric polymorphism
- inductive and parametric data types
- higher-order functions
- implicit arguments
- holes in expressions
- axioms for non-computable terms
Additionally, the foreign and compile blocks syntax enable developers to compile
a program to different backends including the =C= language. The Juvix module
system further permits splitting programs into several modules to build
libraries which can be later documented by generating HTML files based on the
codebase, see for example, [[https://anoma.github.io/juvix-stdlib/ ][the Juvix
standard library's website]]. For futher details, please refer to
[[https://anoma.github.io/juvix/ ][the Juvix book ]] which includes our
[[https://anoma.github.io/juvix/introduction/changelog.html ][latest updates ]].
** Coming soon
For the language:
- lambda expressions
- =let= expressions
- tail call optimization
- inference for mutually recursive functions
- compilation to circuits
- coverage checking (i.e. exhaustiveness and useless clauses)
For the compiler:
- Init command
2022-08-15 13:20:38 +03:00
- Better documentation tool: =juvix doc MyFile.juvix=
2022-04-04 19:30:38 +03:00
2022-03-25 20:10:17 +03:00
** Community
2022-07-08 14:59:45 +03:00
We would love to hear what you think of Juvix! Join us on
2022-07-14 12:41:58 +03:00
[[https://discord.gg/vEQappb7wG ][the Anoma Discord ]].