https://github.com/macournoyer/min
The Min language
https://github.com/macournoyer/min
Last synced: about 1 year ago
JSON representation
The Min language
- Host: GitHub
- URL: https://github.com/macournoyer/min
- Owner: macournoyer
- License: mit
- Created: 2008-12-28T06:56:31.000Z (over 17 years ago)
- Default Branch: master
- Last Pushed: 2014-07-18T14:58:24.000Z (almost 12 years ago)
- Last Synced: 2025-04-25T06:09:25.998Z (about 1 year ago)
- Language: Java
- Homepage:
- Size: 1.54 MB
- Stars: 102
- Watchers: 4
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# THE MIN LANGUAGE
Min is a Prototype-based language with syntax inspired by Io and Ruby, topped
with Python's indentation (but only when you want to). It's aimed at being the
most readable and powerful language ever, really!
Oh, and not too slow (running on the JVM).
```
Min = Io clone do:
you_can indent to("create blocks")
you_can indent
to("split a message chain in several lines")
initialize = method:
@it = "rly looks like Ruby"
@but = "with lots of Io flavor"
if(indentation == confusing?("sometimes"),
use () like in(Io)
)
```
## Philosophies
* Everything is an object.
* Everything is a message, no special magic statements (if, def, while, +, &&).
* As little parenthesis as possible.
* Most of the core is open.
* As close to English as possible.
## Features
* Running on the JVM
* Indentation is an option
* Ruby-like syntax
* More to come...
## License
MIT License, (c) macournoyer
## Status on travis-ci.org
[](https://travis-ci.org/ker2x/min)