-6
運行一個for循環
我想從一個列表作爲參數如何在Haskell
-- Help FUnction
helpFun :: Int -> Int -> Int
helpFun x y = x+y
-- Main Functiion
mainfun :: [Int] -> [Int]
mainfun x = helpfun 2 [j | j <- x]
運行的所有元素的幫助功能,如果我們假設x是int型的列表[0,1,2 ,3,4,5,6] 我應該更改哪些內容才能使其爲列表中的所有元素運行helpfun? 我想從helpFun 2 0 to helpFun 2 6
得到的所有號碼,只是像
for a in list:
tt = helpFun 2 a
return tt
感謝
你可能想一些哈斯克爾讀了文學。 http://learnyouahaskell.com/是一個很好的起點 – Dacto