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 -} -```