File: StupidLoop.pm

package info (click to toggle)
libio-async-perl 0.805-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,184 kB
  • sloc: perl: 13,938; makefile: 8
file content (9 lines) | stat: -rw-r--r-- 122 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
package t::StupidLoop;

use v5.14;
use warnings;
use base qw( IO::Async::Loop );

sub new { return bless {}, shift; }

1;