Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/masak/alma
ALgoloid with MAcros -- a language with Algol-family syntax where macros take center stage
https://github.com/masak/alma
dsl experimental grammar macro macros operator parsing perl6 slang
Last synced: about 1 month ago
JSON representation
ALgoloid with MAcros -- a language with Algol-family syntax where macros take center stage
- Host: GitHub
- URL: https://github.com/masak/alma
- Owner: masak
- License: artistic-2.0
- Created: 2014-12-08T10:32:38.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-08-18T15:16:46.000Z (3 months ago)
- Last Synced: 2024-09-30T17:43:52.879Z (about 2 months ago)
- Topics: dsl, experimental, grammar, macro, macros, operator, parsing, perl6, slang
- Language: Raku
- Homepage:
- Size: 2.19 MB
- Stars: 137
- Watchers: 9
- Forks: 15
- Open Issues: 223
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Roadmap: ROADMAP.md
Awesome Lists containing this project
README
# Alma [![Build Status](https://secure.travis-ci.org/masak/alma.svg?branch=master)](http://travis-ci.org/masak/alma)
Alma is a small language created as a testbed for Raku macros. Its goal as a
language is to inform the implementation of macros in Raku, by means of being
a faster-moving code base and easier to iterate on towards good solutions.Rakudo already contains a rudimentary implementation of macros, but at this
point the most mature macro implementation for Raku is embodied in Alma.Alma was previously known as "007", in reference to the "Q" data structure
which represents program fragments.## Get it
If you're just planning to be a Alma end user, `zef` is the recommended way to
install Alma:```sh
zef install alma
```(If you want to install from source, see [the
documentation](http://masak.github.io/alma/#installation-from-source).)### Run it
Now this should work:
```sh
$ alma -e='say("OH HAI")'
OH HAI$ alma examples/format.alma
abracadabra
foo{1}bar
```## Status
Alma is currently in development.
The explicit goal is to reach some level of feature completeness for macros in
Alma, and then to backport that solution to Rakudo.## Useful links
* [Documentation](http://masak.github.io/alma/) (🔧 under construction 🔧 )
* [examples/ directory](https://github.com/masak/alma/tree/master/examples)
* The [Roadmap](https://github.com/masak/alma/blob/master/ROADMAP.md) outlines short- and long-term goals of the Alma projectTo learn more about macros:
* [Hague grant application: Implementation of Macros in Rakudo](http://news.perlfoundation.org/2011/09/hague-grant-application-implem.html)
* [Macros progress report: after a long break](http://strangelyconsistent.org/blog/macros-progress-report-after-a-long-break)
* [Macros: what the FAQ are they?](http://strangelyconsistent.org/blog/macros-what-the-faq-are-they)To learn more about Alma:
* [Double oh seven](http://strangelyconsistent.org/blog/double-oh-seven) blog post
* [Has it been three years?](http://strangelyconsistent.org/blog/has-it-been-three-years) blog post
* This README.md used to contain a [pastiche of the cold open in Casino Royale (2006)](https://github.com/masak/alma/tree/master/documentation/bond-pastiche.md), which was entertaining for some and confusing for others