Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    
    use strict;
    ...
    refresh(); # Refresh the screen (e.g. actually put what we have drawn 
    +into the terminal)
    getch();   # Wait for a keypress
    endwin();  # Exit curses mode
    
  2. or download this
    #!/usr/bin/env perl
    
    use strict;
    ...
    refresh(); # Refresh the screen (e.g. actually put what we have drawn 
    +into the terminal)
    getch();   # Wait for a keypress
    endwin();  # Exit curses mode