summaryrefslogtreecommitdiff
path: root/utils/check-exact/cases/LocToName.hs
blob: 89a0acea127f1ab8b3072f7c221eebcdf4c352a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
module LocToName where

{-








-}







sumSquares (x:xs) = x ^2 + sumSquares xs
    -- where sq x = x ^pow
    --       pow = 2

sumSquares [] = 0