https://github.com/aaronsbytes/leetprint
👀 Make console output look cool
https://github.com/aaronsbytes/leetprint
console console-application csharp hackerman
Last synced: 4 months ago
JSON representation
👀 Make console output look cool
- Host: GitHub
- URL: https://github.com/aaronsbytes/leetprint
- Owner: aaronsbytes
- Created: 2025-02-25T09:21:56.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-02-25T09:32:22.000Z (4 months ago)
- Last Synced: 2025-02-25T10:30:50.264Z (4 months ago)
- Topics: console, console-application, csharp, hackerman
- Language: C#
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LeetPrint
Write to the console, but cooler.
This library is one of the projects i came up with for my internship. It's inspired by the text effect in the show "The Blacklist".---
# Example```csharp
using LeetPrint;Printer printer = new Printer();
Console.WriteLine("Regular console output is boring, right?");
Thread.Sleep(7000);
printer.Print(
"But what about this one? This looks way cooler.",
delay: 3,
rounds: 1,
newLine: true,
symbols: "â–’"
);Thread.Sleep(7000);
printer.Print(
"Or maybe this? Inspired by 'The Blacklist'",
delay: 1,
rounds: 10,
newLine: true
);
```