package Pronto::Link;
use strict;

sub load_url {
  my ($widget, $file) = @_;

  local *FILE;

  open(FILE, $file);
  $widget->insert(undef, undef, undef, join("", <FILE>));
  close(FILE);
}

1;


syntax highlighted by Code2HTML, v. 0.9.1