diff options
| author | Paul Buetow <paul@buetow.org> | 2013-02-03 10:44:49 +0100 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2013-02-03 10:44:49 +0100 |
| commit | 025e15b2ba7f54f87cf409fd7c3dd77746c72858 (patch) | |
| tree | 007c5af4f921aa85665f4db56f6f4309668a5dab /use.buetow.org/content/Fun.sub | |
| parent | fc0acd318710aa0bb566329a36d886b1455c21ec (diff) | |
add hosts
Diffstat (limited to 'use.buetow.org/content/Fun.sub')
| -rw-r--r-- | use.buetow.org/content/Fun.sub/Fibonacci.pl.c.xml | 15 | ||||
| -rw-r--r-- | use.buetow.org/content/Fun.sub/Nosemicolon.xml | 10 | ||||
| -rw-r--r-- | use.buetow.org/content/Fun.sub/Rev.xml | 10 | ||||
| -rw-r--r-- | use.buetow.org/content/Fun.sub/home.xml | 7 |
4 files changed, 42 insertions, 0 deletions
diff --git a/use.buetow.org/content/Fun.sub/Fibonacci.pl.c.xml b/use.buetow.org/content/Fun.sub/Fibonacci.pl.c.xml new file mode 100644 index 0000000..6f17e40 --- /dev/null +++ b/use.buetow.org/content/Fun.sub/Fibonacci.pl.c.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes" ?> +<content> + <pagetitle>Fibonacci.pl.c!</pagetitle> + <text> + <noop>The following code is both, valid C and Perl code :)</noop> + </text> + <code> + <perl> + use LWP::Simple; + my $ret = get("https://ssl.buetow.org/repos/playground/trunk/Perl/perl-c/fibonacci.pl.c"); + $ret =~ s/</</; + $ret; + </perl> + </code> +</content> diff --git a/use.buetow.org/content/Fun.sub/Nosemicolon.xml b/use.buetow.org/content/Fun.sub/Nosemicolon.xml new file mode 100644 index 0000000..467feb4 --- /dev/null +++ b/use.buetow.org/content/Fun.sub/Nosemicolon.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes" ?> +<content> + <pagetitle>Fibonacci Numbers w/o ;</pagetitle> + <code> + <perl> + use LWP::Simple; + get("https://ssl.buetow.org/repos/playground/trunk/Perl/fun/nosemicolon.pl"); + </perl> + </code> +</content> diff --git a/use.buetow.org/content/Fun.sub/Rev.xml b/use.buetow.org/content/Fun.sub/Rev.xml new file mode 100644 index 0000000..a7f2738 --- /dev/null +++ b/use.buetow.org/content/Fun.sub/Rev.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes" ?> +<content> + <pagetitle>Random letters!</pagetitle> + <code> + <perl> + use LWP::Simple; + get("https://ssl.buetow.org/repos/playground/trunk/Perl/fun/rev.pl"); + </perl> + </code> +</content> diff --git a/use.buetow.org/content/Fun.sub/home.xml b/use.buetow.org/content/Fun.sub/home.xml new file mode 100644 index 0000000..9bdbed1 --- /dev/null +++ b/use.buetow.org/content/Fun.sub/home.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes" ?> +<content> + <pagetitle>Fun stuff</pagetitle> + <text> + This section contains some perl fun stuff + </text> +</content> |
