From: Shashank Date Date: 2002-09-15T14:46:46+09:00 Subject: Re: Bug in RubyInline 1.0.5 Sorry for the unneccesary noise. But there is a bug in my bug-report ;-) > def showstr(*args) > inline args, < #include > printf("%s\n",STR2CSTR(argv[0])); > return 0; > END ^ 1 is missing here. So it should be : def showstr(*args) inline args, < printf("%s\n",STR2CSTR(argv[0])); return 0; END1 end But my original claim is still true: that it will not work. Unless, of course, you use single-quoted here-document as suggested by Nobu. -- shanko