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: 26 days ago
JSON representation
rebind parse transform for erlang
- Host: GitHub
- URL: https://github.com/camshaft/rebind
- Owner: camshaft
- Created: 2015-04-25T21:31:21.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-05-20T23:28:32.000Z (over 9 years ago)
- Last Synced: 2024-11-16T13:50:04.776Z (about 2 months ago)
- Language: Erlang
- Size: 137 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- freaking_awesome_elixir - Erlang - rebind parse transform for Erlang. (Macros)
- fucking-awesome-elixir - rebind - rebind parse transform for Erlang. (Macros)
- awesome-elixir - rebind - rebind parse transform for Erlang. (Macros)
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.
```