From aa403b978860210fcbace7fcdf5830066f3e14e0 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sat, 13 Oct 2018 02:17:44 -0400 Subject: import site content --- static/talks/ox_yapc_na_2011/006.pl.html | 56 ++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 static/talks/ox_yapc_na_2011/006.pl.html (limited to 'static/talks/ox_yapc_na_2011/006.pl.html') diff --git a/static/talks/ox_yapc_na_2011/006.pl.html b/static/talks/ox_yapc_na_2011/006.pl.html new file mode 100644 index 0000000..ffc70df --- /dev/null +++ b/static/talks/ox_yapc_na_2011/006.pl.html @@ -0,0 +1,56 @@ + + +006.pl + + + + +
+
+
+
+
+    # app.psgi
+    use OX;
+    
+    my $counter = 0;
+    
+    router as {
+        route '/'         => sub { $counter         };
+        route '/inc'      => sub { ++$counter       };
+        route '/dec'      => sub { --$counter       };
+        route '/reset'    => sub { $counter = 0     };
+        route '/set/:num' => sub { $counter = $_[1] }, (
+            num => { isa => 'Int' },
+        );
+    };
+    
+    xo;
+
+
+
+
+
+
+
+
+ -- cgit v1.2.3-54-g00ecf