view paper/src/AgdaWhere.agda @ 79:4985359bd08b

Update agda description
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Wed, 08 Feb 2017 15:52:44 +0900
parents
children
line wrap: on
line source

f : Int -> Int -> Int
f a b c = (t a) + (t b) + (t c)
  where
    t x = x + x + x

f' : Int -> Int -> Int
f' a b c = (a + a + a) + (b + b + b) + (c + c + c)