Difference between revisions of "Foreign Function Interface"

From HaskellWiki
Jump to navigation Jump to search
(can't decide where to redirect, so crappy stub)
 
(Created an introduction and a set of links)
Line 1: Line 1:
  +
The Foreign Function Interface (FFI) allows you to link Haskell programs to programs written in another language.
See [[Applications and libraries/Interfacing other languages]] and [[GHC/Using the FFI]].
 
   
  +
Select one of the following links for more information:
{{stub}}
 
  +
* [[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]
  +
* [[FFI cook book]]
  +
* [[GHC/Using the FFI]]
  +
* [http://research.microsoft.com/~simonpj/papers/marktoberdorf/ Tackling the awkward squad]
  +
* Blog article: [http://blog.danieroux.com/2007/01/01/simple-demonstration-of-haskell-ffi/ Simple demonstration of Haskell FFI]
 
* [[Applications and libraries/Interfacing other languages]]

Revision as of 19:52, 30 August 2008

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: