Latest Articles

Field and Method Overriding in Go

Go achieves inheritance-like behavior through embedding. An outer struct can automatically access the fields and methods of the embedded struct. For more con...

alias and alias_method in Ruby

Learn how to use alias and alias_method in Ruby — renaming methods, wrapping behavior, and the key differences between the two.