From 2369a37fdbda9100354bd53836021a1ccb7cdb69 Mon Sep 17 00:00:00 2001 From: zleyyij <75810274+zleyyij@users.noreply.github.com> Date: Wed, 11 Sep 2024 15:20:49 -0600 Subject: [PATCH] vault backup: 2024-09-11 15:20:49 --- education/software development/ECE1400/2024-09-11.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/education/software development/ECE1400/2024-09-11.md b/education/software development/ECE1400/2024-09-11.md index 2b703cb..45061f8 100644 --- a/education/software development/ECE1400/2024-09-11.md +++ b/education/software development/ECE1400/2024-09-11.md @@ -24,4 +24,7 @@ int v; int e = 5; // Simple assignment v = e; -``` \ No newline at end of file + +// You can chain several operators together +i = j = k = 0; +```