I tried looking for specifics in a startpage search, but usually when I look up specific things Stack Overflow often gives confusing answers without really explaining how anything works, and then I have figure out how to rework things to fit in a game design concept. Very frustrating.
Anyway, what I mainly know of Ruby is strings, variables, arrays, class, class call. I have difficulty with more specific grhings like reading files, so I often end up having to hard code levels in.
Is there a way to find tutorials written in a way that don't feel like machine level language? That way I can better find out the extent of which specific loops in Ruby are necessary.
class Hello
def initialize
greet
end
def greet
puts "Hello Roguelike Forums."
end
end
Hello.new
Mostly used to novels, so this has been an ... interesting experience so far.