rubex

https://github.com/sciruby/rubex

Ruby

rubex - A Ruby-like language for writing Ruby C extensions.

Rubex::AST::Statement::Print#expressions

An Array containing expressions that are passed to the print statement.
  Can either contain a single string containing interpolated exprs or
  a set of comma separated exprs. For example, the print statement can
  either be of like:
    print "Hello #{a} world!"
  OR
    print "Hello", a, " world!"

Source | Google | Stack overflow

Edit

git clone [email protected]:sciruby/rubex.git

cd rubex

open lib/rubex/ast/statement.rb

Contribute

# Make a new branch

git checkout -b -your-name--update-docs-Rubex--AST--Statement--Print-expressions-for-pr


# Commit to git

git add lib/rubex/ast/statement.rbgit commit -m "better docs for Rubex::AST::Statement::Print#expressions"


# Open pull request

gem install hub # on a mac you can `brew install hub`

hub fork

git push <your name> -your-name--update-docs-Rubex--AST--Statement--Print-expressions-for-pr

hub pull-request


# Celebrate!