Measures Concepts
GitHub icon

taf

taf - Programming language

< >

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

Source code:
git clone https://github.com/manuel/taf
#1514on PLDB 12Years Old

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 · Search · Add Language · Features · Creators · Resources · About · Blog · Acknowledgements · Queries · Stats · Sponsor · Day 605 · feedback@pldb.io · Logout