Ecosyste.ms: Awesome

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

https://github.com/camshaft/rebind

rebind parse transform for erlang
https://github.com/camshaft/rebind

Last synced: about 2 months ago
JSON representation

rebind parse transform for erlang

Lists

README

        

rebind
======

rebind parse transform for erlang

Usage
-----

```erlang
-module(test).
-compile({parse_transform, rebind}).

-export([sum/0]).

sum() ->
State = 1,
rebind(State) = State + 1,
rebind(State) = State + 1,
rebind(State) = State + 1,
rebind(State) = State + 1,
State.
```