Project

capricc-io

0.0
No release in over a year
Extremely minimalistic prototype-based homoiconic Io-like language
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 0.6.0
~> 13.0
~> 3.0
~> 1.21
~> 0.6.0
~> 0.21.2
 Project Readme

Capricc-Io

Build Status Codecov GitHub code size in bytes

Gem Version Gem Downloads

Capricc-Io is a tiny interpreted prototyped-based homoiconic and dynamic typing language with Io-like messages.

  • Everything is an object in Capricc-Io;
  • Program is just a series of messages;
  • Objects don’t have classes, but prototypes, their parent objects;
  • Messages are the only data type and also parsing representation → homoiconicity;

In lib/capriccio/stdlib you can see how you can define an if statement or booleans behavior directly in Capric-Io;

Installation

$ gem install capricc-io

Usage

Run REPL:

capio

or run file:

capio your_code.cio

Examples of code

Prototypes & OOP:

# comment

set("person", Object clone)
person set("name", "Max")
person name print
# => Max

person set("say_name", def(
  arguments print
  # => <Message @name="hello...">

  eval_arg(0) print
  # => hello...

  self name print
  # => Max
))

person say_name("hello...")

Conditions:

if(true,
  "condition is true" print,
  "nope" print
)
# => condition is true

if(false,
  "nope" print,
  "condition is false" print
)
# => condition is false

Booleans:

"yo" or("hi") print
# => yo

nil or("hi") print
# => hi

"yo" and("hi") print
# => hi

1 and(2 or(3)) print
# => 2

Building

Pre-reqs

To build and run this app locally you will need a few things:

  • Install Ruby (tested on 2.6);

Getting start

  • Clone the repository
git clone --depth=1 https://github.com/maxbarsukov/capricc-io.git
  • Install dependencies
cd capricc-io
bundle install
  • Run
./bin/capriccio input.cio
# or
./bin/capriccio
  • RSpec
bundle exec rspec
  • Rubocop
bundle exec rubocop

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/maxbarsukov/capricc-io. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the Capricc-Io project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.