Ruby

def our_lovely_backend_language; end

Ruby is a dynamic, open source programming language with a focus on simplicity and productivity. It has an elegant syntax that is natural to read and easy to write.

Official Documentation of our Current Version

Staying up to Date

Tips and Tricks

Underscore in irb

/*
    When interacting directly into irb or rails console,
    using the underscore `_` will refer to the last output
*/

$ irb
irb> ThirdParty.make_request(params)
irb> response = _
irb> response.parse() 

Last updated