Facebook
From Bistre Motmot, 2 Years ago, written in PHP.
This paste is a reply to Basic Calculator from RealBlocks - view diff
Embed
Download Paste or View Raw
Hits: 259
  1. <?php
  2.  
  3. class Calculator
  4. {
  5.         public static function add($a, $b)
  6.         {
  7.                 return $a + $b;
  8.         }
  9.  
  10.         public static function divide($a, $b)
  11.         {
  12.                 return $a / $b;
  13.         }
  14. }
  15.