From 76c6c5ae01b90566b12d7cc880ed11c430f0b88e Mon Sep 17 00:00:00 2001 From: Tim Van Baak Date: Tue, 4 Mar 2025 08:55:36 -0800 Subject: [PATCH] Fix C# post not appearing in feed --- src/post/2024/lesser-known-operators-in-cs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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`.