Re: [Factor-talk] Shebang syntax

2012-12-06 Thread John Benediktsson
It was added in November 2011 and is part of the 0.95 release. https://github.com/slavapestov/factor/commit/cd5f4f9b35d21e79300599804bb1009a477d2936 On Thu, Dec 6, 2012 at 9:25 AM, Andrew Pennebaker < andrew.penneba...@gmail.com> wrote: > Wonderful! Which version added this? > On Dec 6, 2012 12

Re: [Factor-talk] Shebang syntax

2012-12-06 Thread Andrew Pennebaker
Wonderful! Which version added this? On Dec 6, 2012 12:18 PM, "John Benediktsson" wrote: > This is no longer true: > > $ cat test.factor > #!/path/to/factor > USE: io > "hello, world" print > > $ ./test.factor > hello, world > > > > On Thu, Dec 6, 2012 at 8:43 AM, Andrew Pennebaker < > andrew.pen

Re: [Factor-talk] Shebang syntax

2012-12-06 Thread John Benediktsson
This is no longer true: $ cat test.factor #!/path/to/factor USE: io "hello, world" print $ ./test.factor hello, world On Thu, Dec 6, 2012 at 8:43 AM, Andrew Pennebaker < andrew.penneba...@gmail.com> wrote: > Can we remove the requirement that shebang arguments be preceded by a > space? Most p

[Factor-talk] Shebang syntax

2012-12-06 Thread Andrew Pennebaker
Can we remove the requirement that shebang arguments be preceded by a space? Most programming languages don't require this, so Factor's shebang syntax is a bit unintuitive. http://rosettacode.org/wiki/Multiline_shebang#Factor -- Cheers, Andrew Pennebaker www.yellosoft.us ---