I want to create GUI interactive terminal-based application(s) and to make stuff like this:
As suggested in my previous post out, I was suggested the tui
crate tui - Rust and to be honest it kinda looks complicated (in my opinion), especially with this particular example (unless if I am mistaken with something?).
I wanted something more basic and easy to use like the processing language. If I want to create a square, all I have to type is rect(10,20, 50, 50)
I want something more basic like this.
I suppose I could use curses
#curses // Lib.rs But I hoenstly want something simple and basic. What would be a good option over here?