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

taf

< >

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

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

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 Example Token
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