I feel pretty dumb having to ask this, but it's had me stumped way too long. Attempting to run the following, I get
finance.rb:1: syntax error, unexpected kDEF, expecting $end
def get_sign(input)
return "+" if input.include? "+"
return "-" if input.include? "-"
end
def get_account_name(input)
if input.split[0] == "new"
return input.split.reject{|x| x == "new" or x == "account"}[0]
else
return input.split[0]
end
end
If I wrap them in a class, it just expects <, \n, or ; instead of $end.
Ruby 1.8.7 and 1.9 (via Macruby) give the same error. Removing the second method seems to get it working. Someone, please enlighten me; this seems like a really fundamental misunderstanding of something on my part.
returnin Ruby, and rarely necessary; your first method can be rewritten as:def get_sign(input)\nif input.include? "+"\n"+"\nelsif input.include? "-"\n"-"\nend\nendand you can simply remove thereturnkeywords from your second method for better—and faster—code. – Phrogz Jan 24 '11 at 5:03./finance.rb, you'll need a shebang as the first line (e.g. "#!/usr/bin/ruby1.8"). – Wayne Conrad Jan 24 '11 at 5:03