Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7786343
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T20:24:08+00:00 2026-06-01T20:24:08+00:00

package My_Test; use warnings; use strict; use Curses; sub routine { my $scr =

  • 0
package My_Test;
use warnings; 
use strict;
use Curses;

sub routine {
    my $scr = newterm( $ENV{TERM}, \*STDERR, \*STDIN );
    set_term( $scr );
    noecho();     
    keypad( 1 ); 

    printw "press a key: ";
    refresh;
    my $c = getch();
    printw "$c\n";
    refresh;
    sleep 1;

    endwin();
    delscreen( $scr );
}

1;

When I run this script

#!/usr/bin/env perl
use warnings;
use strict;
use My_Test;

My_Test::routine();
My_Test::routine();

the second My_Test::routine produces this error-message:

Use of uninitialized value in subroutine entry at My_Test.pm line 8.
argument 0 to Curses function 'set_term' is not a Curses screen at My_Test.pm line 8.

Why does this subroutine work only the first time?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T20:24:09+00:00Added an answer on June 1, 2026 at 8:24 pm
    package My_Test;
    
    use strict;
    use warnings; 
    use Curses;
    
    our $scr = newterm($ENV{TERM}, \*STDERR, \*STDIN);
    set_term($scr);
    
    sub routine {
        noecho();     
        keypad(1); 
        printw "press a key: ";
        refresh;
        my $c = getch();
        printw "$c\n";
        refresh;
        sleep 1;
        endwin();
    }
    
    1;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

package JustTesting; use strict; use warnings; sub new { my $self = {}; bless($self,
I have a module which looks like this: package Test; use strict; use warnings;
Right now when i do something like this: use strict; use warnings; package My::Test;
Why do I get the error-message? #!/usr/bin/env perl use warnings; use 5.012; use ORLite
We have created the following simple Mojolicious controller: package SampleApp::Pages; # $Id$ use strict;
In a small test file, I can run #!/usr/bin/perl use warnings; use strict; use
My current requirement is: I have to package my grails app and use teamcity
Why is it that my code is not working after I added use strict;
I'm trying to use Oracle LogMiner ( DBMS_LOGMNR package) for implementation of audit trails
I'm trying to package my test classes in to an executable jar with dependencies

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.