Update README.md

This commit is contained in:
ArthurSonzogni 2020-05-20 22:12:20 +02:00
parent b00fa7dc65
commit 96e37b031a

View File

@ -37,14 +37,14 @@ A simple C++ library for terminal based user interface.
## Example: ## Example:
~~~cpp ~~~cpp
vbox( vbox({
hbox( hbox({
text(L"left") | border, text(L"left") | border,
text(L"middle") | border | flex, text(L"middle") | border | flex,
text(L"right") | border text(L"right") | border
), }),
gauge(0.5) | border gauge(0.5) | border
) })
~~~ ~~~
~~~bash ~~~bash