Mercurial > hg > Papers > 2021 > soto-prosym
view Paper/src/AgdaWhere.agda @ 0:c59202657321
init
author | soto <soto@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 02 Nov 2021 06:55:58 +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)