I3oris / ic

REPL Interface wrapping Crystal Interpreter (crystal-i).
MIT License
49 stars 2 forks source link
crystal crystal-interpreter crystal-lang crystal-shard interpreter repl

IC

IC, for Interactive Crystal, is an REPL interface for Crystal Interpreter.

It allows to quickly try and test some crystal code, or debug your code thanks to crystal pry.

Features

Warning

The Crystal interpreter is experimental and not yet released, some issue can still occur while interpreting.

Installation

Dependencies

You need to install the same dependencies as the crystal compiler, follow the instructions here. If you have already installed crystal from source, you can skip this step.

Build

git clone https://github.com/I3oris/ic.git
cd ic

make
# => bin/ic

Optimized Build

make release

This is a bit long, and require at least 4.5 GB of available RAM.

Install

Install IC at /usr/local/

sudo make install

As a Shard

Add this to your shard.yml file:

development_dependencies:
  ic:
    github: I3oris/ic

And run shards install

Usage

Interactive mode

ic

Run file with arguments

# say_hello.cr

name = ARGV[0]?
puts "Hello #{name}!"
ic say_hello.cr World

Debugger (pry)

On a file use the macro debugger:

# say_hello.cr

debugger # <= will start the debugger at this point
name = ARGV[0]?
puts "Hello #{name}!"

Then, just run IC: ic say_hello.cr World.

You will see the current position on your code:

    1: # say_hello.cr
    2:
    3: debugger # <= will start the debugger at this point
 => 4: name = ARGV[0]?
    5: puts "Hello #{name}!"
    6:

On the pry prompt you can type:

Hotkeys

Only on debugger (pry):

History

History is saved in <home>/.ic_history and is limited to 10_000 entries. It can be changed with environment variables IC_HISTORY_FILE and IC_HISTORY_SIZE. Use IC_HISTORY_FILE="" to disable saving history in a file.

Commands

You can type the following commands:

Contributing:

  1. Fork it (https://github.com/I3oris/ic/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors