view paper/src/AgdaWhere.agda @ 130:80a196c82a4c

Update todo
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Sat, 18 Feb 2017 15:43:09 +0900
parents 4985359bd08b
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)