Skip to content

The Fuzion Language Implementation

License

Notifications You must be signed in to change notification settings

maxteufel/fuzion

 
 

Repository files navigation

fuzion logo Fuzion

OpenSSF Scorecard

A language with a focus on simplicity, safety and correctness.

Please note that this language is work in progress.



Examples

hello_world is
  # read someone's name from standard input
  #
  get_name String is
    io.stdin.read_line ? name String => name
                       | e error => panic "Could not get your name!"

  # greet someone with the name given
  #
  greet(name String) is
    say "Hello, {name}!"

  # greet the user
  #
  x := greet get_name

  # you can access any feature - even argument features of other features
  # from outside
  #
  say "How are you, {x.name}?"

This hello_world example demonstrates one important concept in Fuzion quite well: Everything is a feature. Features are Fuzion's response to the mess that is created by classes, methods, interfaces, and various other concepts in other programming languages. Since everything is a feature, the programmer does not need to care and the compiler will do this work. As you can see, it is even possible to access the argument features of some feature from outside.

ex_gcd is
  max(a, b i32) i32 is
    if a > b then a else b

  common_divisors_of(a, b i32) list i32 is
    x := max a.abs b.abs
    y := 1..x
    y.as_list.flatMap i32 (i->
      if (a % i = 0) && (b % i = 0)
        [-i, i].as_list
      else
        lists.empty i32)

  gcd(a, b i32) i32
    pre
      safety: (a != 0 || b != 0)
    post
      safety: a % result = 0,
      safety: b % result = 0,
      pedantic: (common_divisors_of a b).reduce bool true (tmp,cur->tmp && (gcd.this.result % cur = 0))
  is
    if b = 0
      a
    else
      gcd b (a % b)


  say (gcd 8 12)
  say (gcd -8 12)
  say (gcd 28 0)

This example implements a simple variant of an algorithm that finds the greatest common divisor of two numbers. However, it also demonstrates one of Fuzion's notable features: design by contract. By specifying pre- and postconditions for features, correctness checks are made possible.

generator_effect is
  # define a generator effect with a yield operation
  #
  gen(T type,
      yield T->unit    # yield is called by code to yield values
      ) : simpleEffect is

  # traverse a list and yield the elements
  #
  list.traverse unit is
    match list.this
      c Cons => (example.gen A).env.yield c.head; c.tail.traverse
      nil =>

  # bind the yield operation dynamically
  #
  (gen i32 (i -> say "yielded $i")).use (()->
    [0,8,15].as_list.traverse)

Another major concept in Fuzion is that of the algebraic effect - a new approach to encapsulating code with side effects in a safe way.

In the example above, a custom effect has been used to implement a generator with a yield operation. In some other languages, this requires a keyword yield to be provided by the language, but in Fuzion this can be implemented without language support.

If you want to play around with Fuzion, try the interactive tutorial.

Documentation

Check flang.dev for language and implementation design.

Clone

Note that the current directory must not contain any spaces.

git clone https://github.com/tokiwa-software/fuzion

Requirements

For Debian based systems this command should install all requirements:

sudo apt-get install make clang libgc1 libgc-dev openjdk-17-jdk
  • OpenJDK 17, e.g. Adoptium
  • clang LLVM C compiler
  • GNU make
  • libgc

Windows

Note that building from powershell/cmd does not work yet.

  1. Install chocolatey: chocolatey.org
  2. In Powershell:
    1. choco install git openjdk make msys2 diffutils
    2. [Environment]::SetEnvironmentVariable("Path","c:\tools\msys64\mingw64\bin;" + $env:Path , "User")
  3. In file C:\tools\msys64\msys2_shell.cmd change line: 'rem set MSYS2_PATH_TYPE=inherit' to 'set MSYS2_PATH_TYPE=inherit'
  4. In msys2 shell (execute C:\tools\msys64\msys2_shell.cmd):
    1. pacman -S mingw-w64-x86_64-clang
    2. make

Build

Make sure java/javac and clang are in your $PATH.

cd fuzion
make

You should have a folder called build now.

Run

cd build
export PATH=$PWD/bin:$PATH
cd tests/rosettacode_factors_of_an_integer
fz factors

To compile the same example (requires clang C compiler):

fz -c factors
./factors

Have fun!

About

The Fuzion Language Implementation

Resources

License

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 91.3%
  • Makefile 7.4%
  • Shell 1.1%
  • Other 0.2%