Helpful wrapper for input/output tasks

1.0.0 2020-11-24 18:57 UTC

This package is not auto-updated.

Last update: 2025-05-07 16:04:52 UTC


README

Package for working with input/output tasks

Install

composer require consolly/io

How to use

use Consolly\IO\Error\Err;
use Consolly\IO\Input\In;
use Consolly\IO\Output\Out;

Out::write('text'); // Write to stdout thread

Err::write('error text'); // Write to stderr thread

In::read(); // It will read stdin thread and return data