The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package IUP::GL::Link;
use strict;
use warnings;
use base 'IUP::GL';
use IUP::Internal::LibraryIup;

sub _create_element {
  my ($self, $args) = @_;
  return IUP::Internal::LibraryIup::_IupGLLink(delete $args->{URL}, delete $args->{TITLE});
}

1;