Top 1K Features Creators Events Podcasts Books Extensions Interviews Blog Explorer CSV

fizz

< >

fizz is a programming language created in 2017.

#1819on PLDB 7Years Old
Homepage

fizz is an experimental language and runtime environment for the exploration of cognitive architectures and combined Machine Learning (ML) and Machine Reasoning (MR) solutions. It is based primarily on symbolic programming and fuzzy formal logic and it features a distributed (as in heterogeneous computer cluster), concurrent, asynchronous and responsive inference engine.


Example from the web:
// Code ---------------------------------------------------------------------------------------------------------------------------------- is.tree { // test if a term is a valid binary tree (nil)^ :- true; (n(_,_,:l,:r))^ :- #is.tree(:l), #is.tree(:r); (_) :- false; } btr.length { // how many nodes is there on a binary tree (nil,0)^ :- true; (n(_,_,:l,:r),:n) :- #btr.length(:l,:l.n), #btr.length(:r,:r.n), sum(:l.n,:r.n,1,:n); }

Language features

Feature Supported Example Token
Booleans ✓ true false
Comments ✓ // A comment
Line Comments ✓ // A comment //
Semantic Indentation X

- Build the next great programming language · Add · About · Search · Keywords · Livestreams · Labs · Resources · Acknowledgements

Built with Scroll v144.0.0