Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/motemen/perl5-print-indented
Outputs indented as per source code indentation
https://github.com/motemen/perl5-print-indented
Last synced: 3 months ago
JSON representation
Outputs indented as per source code indentation
- Host: GitHub
- URL: https://github.com/motemen/perl5-print-indented
- Owner: motemen
- License: other
- Created: 2013-09-21T16:01:34.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-11-20T04:45:44.000Z (about 11 years ago)
- Last Synced: 2024-05-01T23:31:26.418Z (8 months ago)
- Language: Perl
- Homepage:
- Size: 129 KB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
- License: LICENSE
Awesome Lists containing this project
README
# NAME
Print::Indented - Indent outputs indented as per source code indentation
# SYNOPSIS
use Print::Indented;
print "foo\n"; # prints "foo"
{
print "bar\n"; # prints " bar";
}# DESCRIPTION
Print::Indented indents stdout/stderr outputs according to the source line indentation
where print function called, ex. `print`, `warn`.# LICENSE
Copyright (C) motemen.
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.# AUTHOR
motemen