From 00bbed5930c75c4bcd05eda68af0fc532920b4bf Mon Sep 17 00:00:00 2001 From: Charles Lowell Date: Fri, 26 Feb 2010 21:47:41 -0600 Subject: [PATCH] add print method to the shell. --- bin/therubyracer | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bin/therubyracer b/bin/therubyracer index a86c698..fba055b 100755 --- a/bin/therubyracer +++ b/bin/therubyracer @@ -35,6 +35,10 @@ HELP "[object TheRubyRacer]" end + def print(string) + puts string + end + def ruby(src) eval(src) end