NAME ==== vars - Port of Perl's pragma to predeclare variables to Raku SYNOPSIS ======== use vars <$frob @mung %seen>; DESCRIPTION =========== This will predeclare all the subroutine whose names are in the list, allowing you to use them without parentheses even before they're declared. Unlike pragmas that affect the $^H hints variable, the "use vars" declarations are not BLOCK-scoped. They are thus effective for the entire package in which they appear. You may not rescind such declarations with "no vars". See "Pragmatic Modules" in perlmodlib and "strict vars" in strict. PORTING CAVEATS =============== Due to the nature of the export mechanism in raku, it is impossible (at the moment of this writing: 2018.05) to export to the OUR:: stash from a module. Therefore the raku version of this module exports to the **lexical** scope in which the `use` command occurs. For most standard uses, this is equivalent to the Perl behaviour. AUTHOR ====== Elizabeth Mattijsen Source can be located at: https://github.com/lizmat/vars . Comments and Pull Requests are welcome. COPYRIGHT AND LICENSE ===================== Copyright 2018-2019 Elizabeth Mattijsen Re-imagined from Perl as part of the CPAN Butterfly Plan. This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.