azawawi / raku-ncurses

Raku interface to NCurses library
MIT License
23 stars 9 forks source link

Problem with wborder signature #23

Open hsmyers opened 4 years ago

hsmyers commented 4 years ago

As is, the signature for wborder is (NCurses::WINDOW, int32, int32, int32, int32, int32, int32, int32, int32 --> int32). In order to accept characters shouldn't that be (NCurses::WINDOW, int, int, int, int, int, int, int, int --> int) such that wborder( $window, ' '.ord, ' '.ord, ' '.ord, ' '.ord, ' '.ord, ' '.ord ); would work?