diff --git a/content/posts/2025-01-26-go-cpm.md b/content/posts/2025-01-26-go-cpm.md new file mode 100644 index 0000000..c9528a1 --- /dev/null +++ b/content/posts/2025-01-26-go-cpm.md @@ -0,0 +1,11 @@ +--- +title: 'Golang equality and ordering' +date: 2025-01-11 +description: 'Exploring equality and ordering in Golang' +tags: ["Golang", "Go"] +categories: ["Golang", "Go"] +--- + +# Golang equality and ordering + +Golang doesn't include explicit interfaces for equality and ordering, which is a deliberate design choice aimed at maintaining language simplicity. The compiler automatically handles equality and ordering operations for basic types. In this post, I'll explore how the Go compiler implements these fundamental comparison operations under the hood.