4 releases
0.1.3 | Mar 2, 2023 |
---|---|
0.1.2 | Feb 27, 2023 |
0.1.1 | Feb 24, 2023 |
0.1.0 | Feb 24, 2023 |
#9 in #border
5KB
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! |
+----------------------+