From bdc1713435b3d196bce2a1b93b90dad22d67363b Mon Sep 17 00:00:00 2001 From: Infendro Date: Sat, 13 Dec 2025 20:12:34 +0000 Subject: [PATCH] Update Home --- Home.md | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/Home.md b/Home.md index d4e1eac..d7f75d1 100644 --- a/Home.md +++ b/Home.md @@ -31,21 +31,3 @@ dependencies { implementation("com.infendro:encoding:1.2.0") } ``` - -## Usage - -```kotlin -import com.infendro.encoding.Base16 - -fun main() { - // the string to encode - val test = "Hello World!" - .encodeToByteArray().asUByteArray() - - // encode the string with the desired encoding - val encoded = Base16.encode(test) - .asByteArray().decodeToString() - - println(encoded) // 48656c6c6f20576f726c6421 -} -```