summaryrefslogtreecommitdiff
path: root/tiescalar
diff options
context:
space:
mode:
Diffstat (limited to 'tiescalar')
-rwxr-xr-xtiescalar20
1 files changed, 20 insertions, 0 deletions
diff --git a/tiescalar b/tiescalar
new file mode 100755
index 0000000000..ab92a2e333
--- /dev/null
+++ b/tiescalar
@@ -0,0 +1,20 @@
+#!./perl
+
+# $RCSfile: dbm.t,v $$Revision: 4.1 $$Date: 92/08/07 18:27:43 $
+{
+ package SOMEPACK;
+ sub new { local($x); bless \$x }
+ sub fetch { warn "fetch @_\n"; ${$_[0]} }
+ sub store { warn "store @_\n"; ${$_[0]} = $_[1] }
+ sub DESTROY { warn "DESTROY @_\n" }
+}
+
+tie $h, SOMEPACK;
+
+$h = 'bar';
+print $h, "\n";
+
+untie $h;
+1;
+
+