Sundeep Agarwal
Sundeep Agarwal
Chapter link: https://github.com/learnbyexample/ThinkRubyBuild/blob/master/chapters_md/inheritance.md
Chapter link: https://github.com/learnbyexample/ThinkRubyBuild/blob/master/chapters_md/classes_and_methods.md
Chapter link: https://github.com/learnbyexample/ThinkRubyBuild/blob/master/chapters_md/classes_and_functions.md **Note:** Might need to change chapter name as I have used *method* instead of *function* everywhere in this book as naming guideline. Think Python uses *method* only...
Chapter link: https://github.com/learnbyexample/ThinkRubyBuild/blob/master/chapters_md/classes_and_objects.md
Chapter link: https://github.com/learnbyexample/ThinkRubyBuild/blob/master/chapters_md/case_study_interface_design.md Main issue: couldn't install `turtle` in Ruby and had issues like mentioned here https://github.com/peterc/trtl/issues/5 Possible solution, use *Exercise 3* (grid drawing) from [Methods chapter](https://github.com/learnbyexample/ThinkRubyBuild/blob/master/chapters_md/methods.md#exercises) as a base...
### Discussed in https://github.com/Textualize/textual/discussions/5213 Originally posted by **learnbyexample** November 6, 2024 Here's a sample program: ```python from textual.app import App from textual.widgets import RadioButton, RadioSet class TestApp(App): CSS = '''...