Top 1,000 Features Creators Resources Blog Explorer Download
GitHub icon

taf

< >

taf is a programming language created in 2012 by Manuel Simoni.

#1212on PLDB 12Years Old
Download source code:
git clone https://github.com/manuel/taf

A Lisp with row polymorphism, delimited continuations, and hygienic macros. [vaporware]


Example from the web:
(define (make-person name email) #(person :name name :email email)) ; creates a person record with name and email fields (define-generic (to-string obj)) (define-method (to-string (obj #(person :name :email))) ; matches persons and binds name and email field to local variables (concat (list name " <" email ">"))) (to-string (make-person "Manuel" "msimoni@gmail.com")) ; ==> "Manuel <msimoni@gmail.com>"

Language features

Feature Supported Token Example
Comments ✓
; A comment
Line Comments ✓ ;
; A comment
Semantic Indentation X

View source

- Build the next great programming language · About · Acknowledgements · Extensions · Day 626 · feedback@pldb.io