summaryrefslogtreecommitdiff
path: root/ext/dotnet/dotnet.php
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2003-01-11 12:23:45 +0000
committerDerick Rethans <derick@php.net>2003-01-11 12:23:45 +0000
commit6b7eaaa2c43bd9a445825d8f008500e0abe69b7b (patch)
treea2994234c30b315b713f1c821420e06f8ef034e2 /ext/dotnet/dotnet.php
parentc8d19858ac837fe2287332011e30c8bb67e3cd45 (diff)
downloadphp-git-6b7eaaa2c43bd9a445825d8f008500e0abe69b7b.tar.gz
- Moving java and dotnet extensions to ext/rpc
Diffstat (limited to 'ext/dotnet/dotnet.php')
-rw-r--r--ext/dotnet/dotnet.php8
1 files changed, 0 insertions, 8 deletions
diff --git a/ext/dotnet/dotnet.php b/ext/dotnet/dotnet.php
deleted file mode 100644
index 3b0b67c02f..0000000000
--- a/ext/dotnet/dotnet.php
+++ /dev/null
@@ -1,8 +0,0 @@
-<?
- $stack = new DOTNET("mscorlib","System.Collections.Stack");
-
- $stack->Push(".Net");
- $stack->Push("Hello ");
-
- echo $stack->Pop() . $stack->Pop();
-?>