1
1
mirror of https://github.com/anoma/juvix.git synced 2024-08-16 19:50:26 +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-12-20 13:05:40 +01:00
.github Pin mdbook to version 0.4.22 in docs build (#1670) 2022-12-15 16:56:27 +01:00
app Support basic dependencies (#1622) 2022-12-20 13:05:40 +01:00
assets Small changes for the presentation (#1456) 2022-08-17 18:27:42 +02:00
c-runtime Add translation from Internal to Core (#1567) 2022-11-07 14:47:56 +01:00
docker Upgrade stack snapshot to use ghc-9.2.5 (#1621) 2022-12-02 10:04:56 +01:00
docs/org Update Changelog v0.2.7 🎉 2022-12-05 11:48:03 +01:00
examples/milestone Add documentation for compiling/running the TicTacToe example (#1664) 2022-12-13 11:14:56 +00:00
juvix-mode Add an emacs function to restart the REPL (#1618) 2022-11-14 09:38:07 +00:00
juvix-stdlib@a2790ca49c Support basic dependencies (#1622) 2022-12-20 13:05:40 +01:00
licenses Add Haddock and Agda licenses (#1506) 2022-09-06 09:30:01 +01:00
runtime Translation from JuvixAsm to C (#1619) 2022-12-06 11:33:20 +01:00
src/Juvix Support basic dependencies (#1622) 2022-12-20 13:05:40 +01:00
test Support basic dependencies (#1622) 2022-12-20 13:05:40 +01:00
tests Support basic dependencies (#1622) 2022-12-20 13:05:40 +01:00
.clang-format Juvix C runtime (#1580) 2022-11-03 09:38:09 +01:00
.github_changelog_generator Update Changelog v0.2.3 🎉 2022-08-15 12:24:42 +02:00
.gitignore Revert "Ignore binaries generated by running some tests" (#1668) 2022-12-14 15:20:08 +00: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
cabal.hie.yaml Add configuration files so the project can be built with cabal (#1667) 2022-12-14 22:35:02 +01:00
cabal.project Add configuration files so the project can be built with cabal (#1667) 2022-12-14 22:35:02 +01:00
changelog.org Update Changelog v0.2.7 🎉 2022-12-05 11:48:03 +01: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 Remove shelltest threading (#1611) 2022-11-08 09:28:17 +01:00
package.yaml Support basic dependencies (#1622) 2022-12-20 13:05:40 +01:00
README.org Fix inline monospace formatted text in README (#1671) 2022-12-16 10:28:23 +01:00
stack.yaml Upgrade stack snapshot to use ghc-9.2.5 (#1621) 2022-12-02 10:04:56 +01: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.

Installation

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

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

brew info juvix

Linux x86_64

A Juvix compiler binary executable for Linux x86_64 is available on the Juvix release page.

To install this executable, downlaod and unzip the linked file and add move it to a directory on your shell's PATH.

For example if ~/.local/bin is on your shell's PATH you can install Juvix as follows:

cd /tmp
curl -OL https://github.com/anoma/juvix/releases/download/v0.2.7/juvix-linux_x86_64-v0.2.7.zip
unzip juvix-linux_x86_64-v0.2.7.zip
mv juvix-linux_x86_64-v0.2.7 ~/.local/bin/juvix

Building Juvix from source

To install Juvix from source you must clone the Github repository. Then Juvix can be installed with the following commands. We assume you have Stack installed.

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

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 the main branch on Github.

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

Quick Start

After installation run juvix --help to see the list of commands available. See CLI usage examples for descriptions of common tasks.

Run Juvix doctor to check your system setup:

juvix doctor

The Hello World example

This is the Juvix source code of the traditional Hello World program.

-- HelloWorld.juvix
module HelloWorld;

open import Stdlib.Prelude;

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

end;

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:

juvix compile HelloWorld.juvix
./HelloWorld

You should see the output: hello world!

The source code can also be compiled to a WebAssembly binary. This requires some additional setup. See Installing dependencies in the documentation for more information. You can also run juvix doctor to check your setup.

juvix compile --target wasm HelloWorld.juvix
wasmer HelloWorld.wasm

Building the project with cabal

We recommend that contributors use the stack build tool with this project.

If you would prefer to use the cabal build tool instead then you must generate the juvix.cabal file using hpack before running cabal build.

To configure the Haskell LSP server to use cabal then replace hie.yaml with cabal.hie.yaml in the root of the repostiory.

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:

  • tail call optimization
  • compilation to circuits
  • coverage checking (i.e. exhaustiveness and useless clauses)

For the compiler:

  • Init command
  • Better documentation tool: juvix doc MyFile.juvix

Community

Join us on our Discord server

This project is part of a bigger effort called Anoma. Anoma is a suite of protocols and mechqanisms for self-contained, self-sovereign coordination. Join the Anoma project.