diff options
author | Araq <rumpf_a@web.de> | 2011-08-09 01:40:12 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-08-09 01:40:12 +0200 |
commit | 7000cf51b7c53808624dd7202c4213b84aacf708 (patch) | |
tree | f19810b24639f978f52dc7a02a569c952b4e9eff /doc | |
parent | 12f22ba68a4c12042f2e72febdda32ff84b63307 (diff) | |
download | Nim-7000cf51b7c53808624dd7202c4213b84aacf708.tar.gz |
modifyable results for generics; teventemitter works
Diffstat (limited to 'doc')
-rwxr-xr-x | doc/nimrodc.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/nimrodc.txt b/doc/nimrodc.txt index 6961c41bd..2fd9267b2 100755 --- a/doc/nimrodc.txt +++ b/doc/nimrodc.txt @@ -225,6 +225,9 @@ interfacing with libraries written in C++: proc run(device: PIrrlichtDevice): bool {. header: irr, importcpp: "run".} +The compiler needs to be told to generate C++ (command ``cpp``) for +this to work. + ImportObjC pragma ----------------- @@ -270,6 +273,9 @@ interfacing with libraries written in Objective C: g.greet(12, 34) g.free() +The compiler needs to be told to generate Objective C (command ``objc``) for +this to work. + LineDir option -------------- |