Difference between revisions of "Foreign Function Interface"

From HaskellWiki
Jump to navigation Jump to search
(Updated link to my blog post.)
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:


Blog articles