comparison 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
comparison
equal deleted inserted replaced
78:897fda8e39c5 79:4985359bd08b
1 f : Int -> Int -> Int
2 f a b c = (t a) + (t b) + (t c)
3 where
4 t x = x + x + x
5
6 f' : Int -> Int -> Int
7 f' a b c = (a + a + a) + (b + b + b) + (c + c + c)