This content is for the 26.7 version. Switch to the latest version for up-to-date documentation.
Fixen: The Fixed-Point Generator
Fixed-Point-Oriented Programming for Haskell
Quick Start
Section titled “Quick Start”git clone -b 26.7 https://github.com/plilab/fixen.gitcd fixencabal install fixen # requires GHC 9.12.2Collaboration
Section titled “Collaboration”Do you have research ideas, applications, uses or general interest in Fixen? Get in touch with us!
{-# LANGUAGE OverloadedStrings #-}module ContactInfo where
import Data.Text (Text)import Data.Text qualified as T
dom :: Textdom = T.concat [ "@", "fixen-lang", ".", T.reverse "gro"]
email :: Textemail = T.append "collaborations" dom