Skip to content

Instantly share code, notes, and snippets.

View xeron's full-sized avatar

Ivan Larionov xeron

View GitHub Profile
>> class Numeric
>> def sqrt
>> Math.sqrt self
>> end
>> def cbrt
>> neg = self < 0
>> c = abs.sqrt.sqrt
>> i = 2
>> loop do
?> w = c