summaryrefslogtreecommitdiff
path: root/perl9.buetow.org/content/Extended-Features.sub/Mixed-Contexes.xml
diff options
context:
space:
mode:
Diffstat (limited to 'perl9.buetow.org/content/Extended-Features.sub/Mixed-Contexes.xml')
-rw-r--r--perl9.buetow.org/content/Extended-Features.sub/Mixed-Contexes.xml10
1 files changed, 0 insertions, 10 deletions
diff --git a/perl9.buetow.org/content/Extended-Features.sub/Mixed-Contexes.xml b/perl9.buetow.org/content/Extended-Features.sub/Mixed-Contexes.xml
deleted file mode 100644
index d6b2feb..0000000
--- a/perl9.buetow.org/content/Extended-Features.sub/Mixed-Contexes.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1" standalone="yes" ?>
-<content>
- <pagetitle>Perl 9 can now mix up contexes!</pagetitle>
- <text>As you know from previous versions of Perl, you use the contexes void, list and scalar to program in. Now you are able to mix those together within the same variable!</text>
- <code>
-my $@scaarr = ("Hello", (1, 2, 3, 4));
-$@scaarr.scalar.say; # Prints Hello
-local $, = ' '; $@scaarr.say; # Prints 1 2 3 4
- </code>
-</content>