Widget Library
89B2300· international master2s256 MB⌨ stdin/stdout
Examples
Sample 1of 2
Input
12Widget me(50,40)VBox grandpaHBox fathergrandpa.pack(father)father.pack(me)grandpa.set_border(10)grandpa.set_spacing(20)Widget brother(30,60)father.pack(brother)Widget friend(20,60)Widget uncle(100,20)grandpa.pack(uncle)
Output
brother 30 60father 80 60friend 20 60grandpa 120 120me 50 40uncle 100 20
Sample 2of 2
Input
15Widget pack(10,10)HBox dummyHBox xVBox yy.pack(dummy)y.set_border(5)y.set_spacing(55)dummy.set_border(10)dummy.set_spacing(20)x.set_border(10)x.set_spacing(10)x.pack(pack)x.pack(dummy)x.pack(pack)x.set_border(0)
Output
dummy 0 0pack 10 10x 40 10y 10 10
58%
89B.cpp
loading editor…
Ln 11·137 BGNU C++20 (64)
loading graph engine…