Sha256: 3b95da975f8fcc65ba6d7a5080a18c8a52031de73fc6d9acfcdfe95604a69b5f
Contents?: true
Size: 278 Bytes
Versions: 12
Compression:
Stored size: 278 Bytes
Contents
# Adds two integers together. # @param x The first integer to add. # @param y The second integer to add. # @return [Integer] Returns the sum of x and y. # @example Example of adding two integers. # test::add(1, 2) => 3 function test::add(Integer $x, Integer $y) { $x + $y }
Version data entries
12 entries across 12 versions & 1 rubygems