Difference between revisions of "Foreign Function Interface"

From HaskellWiki
Jump to navigation Jump to search
Line 3: Line 3:
 
Select one of the following links for more information:
 
Select one of the following links for more information:
 
* [[FFI Introduction]]
 
* [[FFI Introduction]]
* The official description: [http://www.cse.unsw.edu.au/~chak/haskell/ffi/ The Haskell 98 Foreign Function Interface 1.0. An Addendum to the Haskell 98 Report]
+
* The official description: chapters 8 and 24 to 37 of [http://www.haskell.org/onlinereport/haskell2010/#QQ2-15-159 The Haskell 2010 Language Report] (a draft: [http://www.cse.unsw.edu.au/~chak/haskell/ffi/ The Haskell 98 Foreign Function Interface 1.0. An Addendum to the Haskell 98 Report])
 
* [[FFI cook book]]
 
* [[FFI cook book]]
 
* [[FFI complete examples]]
 
* [[FFI complete examples]]

Revision as of 18:24, 2 March 2011

The Foreign Function Interface (FFI) allows you to link Haskell programs to programs written in another language.

Select one of the following links for more information: