File: array-lambda1.fut

package info (click to toggle)
haskell-futhark 0.25.27-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 17,836 kB
  • sloc: haskell: 99,384; ansic: 12,821; python: 3,394; yacc: 783; javascript: 558; sh: 550; lisp: 395; makefile: 263
file content (6 lines) | stat: -rw-r--r-- 183 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
-- We cannot have an array containing literal lambda-expressions.
-- ==
-- error: functional

def main () : i32 = let _ = [\(x:i32) -> x+1, \(x:i32) -> x+x]
                    in 42