Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Avoid using deprecated method.
  • Loading branch information
jnthn committed Nov 5, 2015
1 parent 9d9cf0b commit 98054a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions S32-io/IO-Socket-INET.pl
Expand Up @@ -142,9 +142,9 @@
say $sock.get();
say $sock.get();
say $sock.get();
$sock.input-line-separator = '.';
$sock.nl-in = '.';
say $sock.get();
$sock.input-line-separator = '!';
$sock.nl-in = '!';
say $sock.get();
say $sock.get(); # will begin
say $sock.get(); # with a space
Expand Down

0 comments on commit 98054a2

Please sign in to comment.