Skip to content

Instantly share code, notes, and snippets.

@bolav
bolav / MainView.ux
Last active November 16, 2015 13:44
Shared javascript example
<App Theme="Basic">
<JavaScript File="value.js" ux:Global="Value" />
<StackPanel>
<Panel1 />
<Panel2 />
</StackPanel>
</App>
#!/usr/bin/perl -w
use strict;
use Test::More tests => 7;
use WWW::Curl::Easy;
use HTTP::Request;
my $url = 'http://en.wikipedia.org/wiki/Main_Page';
my $req = HTTP::Request->new( GET => $url );
isa_ok( $req, 'HTTP::Request' );