Commit Diff


commit - 105962593321522f29005f004ebda4325bf1d5dc
commit + e8099127f099747f28c9ee423e3cb145c560480c
blob - bfd80ef3581e44e0d74bc5ee35a81b70f70214f4 (mode 644)
blob + /dev/null
--- README.md
+++ /dev/null
@@ -1,23 +0,0 @@
-# baze64
-
-A base64 encoder & decoder in Zig
-
-## Usage
-
-```shell
-# Print help
-
-# Encoding
-> baze64 "hello"
-
-# Decoding with -D or -d
-> baze64 -D "aGVsbG8="
-
-# Print help
-> baze64 -H
-Usage: baze64 {-d/-D} {-h/-H} input
-With no arguments, encodes input into a base64 string
-Args:
-  -d -D: decodes a base64 string
-  -h -H: print this help
-```
\ No newline at end of file
blob - /dev/null
blob + 14c34856fd2103814b5c9fada8d3b4663929fbaa (mode 644)
--- /dev/null
+++ README
@@ -0,0 +1,21 @@
+baze64
+
+A base64 encoder & decoder in Zig
+
+-- Usage --
+
+# Print help
+
+# Encoding
+> baze64 "hello"
+
+# Decoding with -D or -d
+> baze64 -D "aGVsbG8="
+
+# Print help
+> baze64 -H
+Usage: baze64 {-d/-D} {-h/-H} input
+With no arguments, encodes input into a base64 string
+Args:
+  -d -D: decodes a base64 string
+  -h -H: print this help