1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-04 06:23:13 +03:00
Juvix empowers developers to write code in a high-level, functional language, compile it to gas-efficient output VM instructions, and formally verify the safety of their contracts prior to deployment and execution.
Go to file
2022-08-15 12:24:42 +02:00
.github CI: Run build on push to main (#1437) 2022-08-04 18:12:49 +01:00
app Add the option to output json in the juvix internal highlight command (#1450) 2022-08-12 09:48:06 +02:00
assets Implement an html documentation generator similar to haddock (#1413) (#1416) 2022-07-28 17:19:07 +02:00
c-runtime Allow _ in Wasm exported names to support Anoma signature (#1449) 2022-08-12 09:06:14 +01:00
docs/org Add Towers of Hanoi and Pascal triangle examples (#1446) 2022-08-10 12:02:14 +01:00
examples/milestone Give a proper type to literal natural numbers (#1453) 2022-08-12 17:31:15 +02:00
juvix-mode Add Version number to the emacs mode (#1320) 2022-07-13 15:49:06 +02:00
juvix-stdlib@5228caaf13 Remove Int from stdlib and update SimpleFungibleToken example (#1414) 2022-07-27 10:24:25 +02:00
src/Juvix Give a proper type to literal natural numbers (#1453) 2022-08-12 17:31:15 +02:00
test Allow _ in Wasm exported names to support Anoma signature (#1449) 2022-08-12 09:06:14 +01:00
tests Bump version to 0.2.3 2022-08-15 11:08:36 +02:00
.github_changelog_generator Update Changelog v0.2.3 🎉 2022-08-15 12:24:42 +02:00
.gitignore Update some docs (#1391) 2022-07-19 21:13:35 +02:00
.gitmodules Rename MiniJuvix to Juvix (#259) 2022-07-08 13:59:45 +02:00
.hlint.yaml Monomorphization (#70) 2022-05-04 10:50:03 +02:00
.pre-commit-config.yaml Fix Changelog links and minors (#1371) 2022-07-14 11:41:58 +02:00
.pre-commit-hooks.yaml Add initial documentation (#119) (#120) 2022-05-23 16:20:02 +02:00
book.toml Rename MiniJuvix to Juvix (#259) 2022-07-08 13:59:45 +02:00
changelog.org Update Changelog v0.2.3 🎉 2022-08-15 12:24:42 +02:00
hie.yaml Rename MiniJuvix to Juvix (#259) 2022-07-08 13:59:45 +02:00
LICENSE First commit, initial project template. 2021-09-26 18:59:51 +02:00
Makefile Update Changelog v0.2.3 🎉 2022-08-15 12:24:42 +02:00
package.yaml Bump version to 0.2.3 2022-08-15 11:08:36 +02:00
README.org Update Changelog v0.2.3 🎉 2022-08-15 12:24:42 +02:00
stack.yaml Upgrade to ghc-9.2.3 (#178) 2022-06-20 12:53:31 +02:00

Juvix

<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" /> </a>

<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>

<a href="https://github.com/anoma/juvix/blob/main/LICENSE"> <img alt="LICENSE" src="https://img.shields.io/badge/license-GPL--3.0--only-blue.svg" /> </a>

<a href="https://github.com/anoma/juvix"> <img align="right" width="300" height="300" alt="Juvix Mascot" src="assets/seating-mascot.051c86a.svg" /> </a>

Description

Juvix is a research programming language created by 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 validity predicates to the C language, which can be deployed to various distributed ledgers including Anoma.

The Juvix language and related tools are documented in 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 Emacs or the plugin in VSCode.

First examples of programs written in Juvix

The following links are clickable versions of their corresponding Juvix programs. The HTML output is generated by running juvix html --recursive FileName.juvix.

The Juvix standard library contains common functions that can be used in Juvix programs.

Quick Start

Installing Juvix on MacOS

The easiest way to install Juvix on MacOS is by using Homebrew.

To install the homebrew-juvix tap, run:

brew tap anoma/juvix

To install Juvix, run:

brew install juvix

After installing Juvix, you might want to try our doctor to check your system setup:

juvix doctor

Helpful information on the shell can also be obtained by running:

brew info juvix

Building Juvix from the sources

To install Juvix from the sources, you must download the Github repository. Then, the program can be installed with the following commands. We assume have Stack installed.

git clone --recursive https://github.com/anoma/juvix.git
cd juvix
stack install

If the installation succeeds, you must be able to run the Juvix command from any location. To get the complete list of commands, please run juvix --help.

On MacOS, you can alternatively run the following command for Homebrew. The flag --HEAD used below is optional, mostly to build the latest version of Juvix in the main branch on Github.

brew install --build-from-source --HEAD juvix --verbose

The Hello World Example

In the following example a Juvix file is compiled to Wasm. Please check out the documentation Installing dependencies for instructions on how to setup your environment for compiling Juvix. You can also run juvix doctor to check your system setup.

-- HelloWorld.juvix
module HelloWorld;

open import Stdlib.Prelude;

main : IO;
main ≔ putStrLn "hello world!";

end;

Then, run the following commands at the location folder of the file HelloWorld.juvix:

juvix compile HelloWorld.juvix
wasmer HelloWorld.wasm

You should see the output: hello world!

The Juvix programming language

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, the Juvix standard library's website. For futher details, please refer to the Juvix book which includes our 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
  • Better documentation tool: juvix doc MyFile.juvix

Community

We would love to hear what you think of Juvix! Join us on the Anoma Discord.