beautiful_output 0.1.3

display your output in better way
Documentation
  • Coverage
  • 50%
    1 out of 2 items documented1 out of 1 items with examples
  • Size
  • Source code size: 4.1 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 247.96 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 8s Average build duration of successful builds.
  • all releases: 8s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • ranahardik28

How to use beautiful_output

the print function accepts below arguments

1 . Input
2 . padding left
3 . padding rigth
4 . message
5 . border vertical style
6 . border horizontal style
7 . border corner style

Add beautiful_output into your dependencies

[dependencies]
beautiful_output = "0.1.3"

Example

Code :

use beautiful_output::print

print("Hello World!",3,7,"Output :-","-","|","+");

Output :

 Output :-
 +----------------------+
 |   Hello World!       |
 +----------------------+