From c8e4c41ba5b138e0aba99f9c97c0d1c44ef2b3f2 Mon Sep 17 00:00:00 2001 From: Duraid Abdul Date: Mon, 10 May 2021 22:36:46 -0700 Subject: [PATCH] Update README.md --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 068170d..e0d9535 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,13 @@ # **LocalConsole** -A description of this package. +## **How to Use** +```swift +// Show console. +Console.shared.isVisible = true + +// Print to console. +Console.shared._print("Hello, world!") + +// Clear console. +Console.shared.clear() +```