in reply to Re: Re: Failing to Autogenerate config in Inline.PM
in thread Failing to Autogenerate config in Inline.PM
use strict; use Inline (Config => DIRECTORY => '/home/ned/.Inline',); use Inline 'C'; greet('Ingy'); greet(42); __END__ __C__ void greet(char* name) { printf("Hello %s!\n", name); }
On my system, it writes a config file in /home/ned/.Inline/config that looks like:
version : 0.42 languages : % C : C Foo : Foo c : C foo : Foo types : % C : compiled Foo : interpreted modules : % C : Inline::C Foo : Inline::Foo suffixes : % C : so Foo : foo
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Failing to Autogenerate config in Inline.PM
by sierrathedog04 (Hermit) on Jul 04, 2001 at 03:31 UTC |