Codebase list libinline-files-perl / run/5ce0ba1b-e343-4931-b662-efc422ee0186/main
run/5ce0ba1b-e343-4931-b662-efc422ee0186/main

Tree @run/5ce0ba1b-e343-4931-b662-efc422ee0186/main (Download .tar.gz)

==============================================================================
                         Release of Inline::Files
==============================================================================


NAME
    Inline::File - Multiple virtual files at the end of your code

SYNOPSIS

    use Inline::Files;

    my Code $here;

    while (<FOO>) { print }

    # etc.

    __FOO__
    This is a virtual file at the end
    of the data
        
    __BAR__
    This is another
    virtual

    file
    __FOO__
    This is yet another 
    such file

DESCRIPTION
    Inline::Files generalizes the notion of the `__DATA__' marker and the
    associated `<DATA>' filehandle, to an arbitrary number of markers and
    associated filehandles.

    When you add the line:

            use Inline::Files;

    to a source file you can then specify an arbitrary number of
    distinct virtual files at the end of the code.

AUTHOR
    Damian Conway (damian@conway.org)


==============================================================================