Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alexknauth/postfix-dot-notation

a racket lang-extension for postfix dot notation
https://github.com/alexknauth/postfix-dot-notation

Last synced: about 1 month ago
JSON representation

a racket lang-extension for postfix dot notation

Awesome Lists containing this project

README

        

postfix-dot-notation [![Build Status](https://travis-ci.org/AlexKnauth/postfix-dot-notation.png?branch=master)](https://travis-ci.org/AlexKnauth/postfix-dot-notation)
===
A racket lang-extension for postfix dot notation

documentation: http://pkg-build.racket-lang.org/doc/postfix-dot-notation/index.html

```racket
#lang postfix-dot-notation racket
(define x "hello-world")
x.string->symbol ; 'hello-world
(struct foo (a b c))
(define y (foo 1 2 3))
x.foo-a ; 1
x.foo-b.number->string ; "2"
```