diff --git a/src/post/2024/lesser-known-operators-in-cs.md b/src/post/2024/lesser-known-operators-in-cs.md index 7a45537..771fa25 100644 --- a/src/post/2024/lesser-known-operators-in-cs.md +++ b/src/post/2024/lesser-known-operators-in-cs.md @@ -1,6 +1,6 @@ --- title: Lesser-known operators in C# -ffeed: post +feed: post --- Most programming languages have operators, symbols or keywords that can be used to build up complex expressions and do all the things the programming language is meant to accomplish. A few operators are nigh-ubiquitous: arithmetic addition and subtraction via `+` and `-`, assignment via `=`, and logical junctions via `&&` and `||` or the keywords `and` and `or`.