Sha256: bad7d68293b1b3dd6608460958ad7cd33aee066e151d94d34cc35973c5ad671c
Contents?: true
Size: 221 Bytes
Versions: 83
Compression:
Stored size: 221 Bytes
Contents
# frozen_string_literal: true # Basic add on class Atome def /(other) value / other end def *(other) value * other end def -(other) value - other end def +(other) value + other end end
Version data entries
83 entries across 83 versions & 1 rubygems