J
Joel VanderWerf
With the following file, t.rb,
----
#!/usr/bin/env ruby
$0 = 'My Application'
puts $0
----
the output is:
$ ruby -v t.rb
ruby 1.8.1 (2003-12-05) [i686-linux]
My Applicati
Why does it get truncated?
----
#!/usr/bin/env ruby
$0 = 'My Application'
puts $0
----
the output is:
$ ruby -v t.rb
ruby 1.8.1 (2003-12-05) [i686-linux]
My Applicati
Why does it get truncated?