view paper/src/AgdaWhere.agda @ 129:c1e9c7ab7691

Import poster graffle file from kaito-master
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Sat, 18 Feb 2017 11:16:52 +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)