Created
August 11, 2011 13:13
Revisions
-
kbarber revised this gist
Aug 15, 2011 . 1 changed file with 6 additions and 9 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,12 +1,9 @@ #include <ruby.h> int main(int argc, char *argv[]) { ruby_init(); ruby_init_loadpath(); rb_load_file(argv[1]); ruby_exec(); return 0; } -
kbarber created this gist
Aug 11, 2011 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ #include <ruby.h> int main(int argc, char *argv[]) { ruby_init(); ruby_init_loadpath(); rb_load_file(argv[1]); ruby_exec(); //ruby_run(); //ruby_finalize(); return 0; }