first :: (a,b,c) -> a
first (x, _, _) = x
second :: (a,b,c) -> b
second (_,y,_) = y
third:: (a,b,c)-> c
third (_,_,z) => z
我从这段代码中收到错误消息。
"parse error on input `=>'
"
我看不出任何理由。谁能帮我指出来?谢谢。
first :: (a,b,c) -> a
first (x, _, _) = x
second :: (a,b,c) -> b
second (_,y,_) = y
third:: (a,b,c)-> c
third (_,_,z) => z
我从这段代码中收到错误消息。
"parse error on input `=>'
"
我看不出任何理由。谁能帮我指出来?谢谢。