aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--unmarshal/main.go19
1 files changed, 0 insertions, 19 deletions
diff --git a/unmarshal/main.go b/unmarshal/main.go
deleted file mode 100644
index 7f4de58..0000000
--- a/unmarshal/main.go
+++ /dev/null
@@ -1,19 +0,0 @@
-package main
-
-import (
- "fmt"
-
- "dim13.org/asn1/ber"
- rose "dim13.org/asn1/ROSE"
-)
-
-func main() {
- pdu := rose.Invoke{
- InvokeId: 2,
- Opcode: 511,
- Argument: nil,
- }
- b, err := ber.Marshal(pdu)
- fmt.Println(err, b)
- fmt.Println(ber.Dump(b))
-}