On Wed, Mar 8, 2017 at 5:51 AM, ToddAndMargo <toddandma...@zoho.com> wrote:Hi All,In Linux, how do I call system functions from Perl 6? int XStoreBytes(Display *display, char *bytes, int nbytes); And what is that? "C"? Is there an inline "C" call? Many thanks, -T
On 03/08/2017 06:51 AM, Will Coleda wrote:
Perl 6 uses "NativeCall" to call out to native library functions. I would start with https://docs.perl6.org/language/nativecall and come back with specific questions.
Thank you!