Mercurial > hg > Papers > 2018 > nozomi-master
view paper/src/AgdaWhere.agda @ 116:ed6719c301fc
Update slide
author | atton <atton@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 13 Feb 2017 17:31:45 +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)