diff --git a/_posts/2020-08-05-static-polymorphism.md b/_posts/2020-08-05-static-polymorphism.md index 5ed1350..d41646f 100644 --- a/_posts/2020-08-05-static-polymorphism.md +++ b/_posts/2020-08-05-static-polymorphism.md @@ -7,7 +7,8 @@ tags: [python] --- Other languages have done similar things (interfaces in Java), but think the Rust comparison is -useful because both languages are "system." +useful because both languages are "system." Mostly looking at how static polymorphism is implemented +in C++ and Rust, but also some comparisons to Rust behavior not strictly related to polymorphism. # Simple Example