view Paper/src/AgdaWhere.agda @ 7:6a61c1eb0205

これを提出した
author soto <soto@cr.ie.u-ryukyu.ac.jp>
date Thu, 12 May 2022 15:44:39 +0900
parents 14a0e409d574
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)