Foreign Function Interface: Difference between revisions
(Updated link to my blog post.) |
m (→Links) |
||
Line 19: | Line 19: | ||
* [http://rosettacode.org/wiki/Use_another_language_to_call_a_function#Haskell Use another language to call a function; Haskell] | * [http://rosettacode.org/wiki/Use_another_language_to_call_a_function#Haskell Use another language to call a function; Haskell] | ||
* [https://code.google.com/p/tabi/ TABI] a typeful tagged cross-language calling convention | * [https://code.google.com/p/tabi/ TABI] a typeful tagged cross-language calling convention | ||
* [[Foreign Function Interface (FFI)]], an attempt to write a comprehensive documentation about the FFI | |||
Revision as of 18:02, 13 February 2015
Introduction
The Foreign Function Interface (FFI) allows you to link Haskell programs to programs written in another language.
Links
Select one of the following links for more information:
- FFI Introduction
- GHC manual: Writing Haskell interfaces to C code: hsc2hs
- haskell-ffi-tutorial at GitHub
- The official description: chapters 8 and 24 to 37 of The Haskell 2010 Language Report (a draft: The Haskell 98 Foreign Function Interface 1.0. An Addendum to the Haskell 98 Report)
- FFI cook book
- FFI complete examples
- GHC/Using the FFI
- Tackling the awkward squad
- fficxx, a Haskell-C++ Foreign Function Interface Generator
- Applications and libraries/Interfacing other languages
- Use another language to call a function; Haskell
- TABI a typeful tagged cross-language calling convention
- Foreign Function Interface (FFI), an attempt to write a comprehensive documentation about the FFI