1
鑑於這兩個功能:如何正確加括號嵌套函數調用?
drex :: (Int,Int) -> [[String]] -> String
rcgmove :: String -> (Int,Int) -> (Int,Int)
當這樣調用:
drex ((rcgmove b (x,y)) xs)
是錯誤的,因爲xs
是rcgmove
的第三個參數。但是,我想xs
是第二個參數drex
。我該怎麼做呢?
函數的參數不應該是()內調用drex時 – Arjan 2013-03-21 17:28:10
謝謝。有用。 – molten 2013-03-21 17:37:19