From e8cf1f47359bb883f69a82648fd0eaf3f2a70f3a Mon Sep 17 00:00:00 2001 From: Xevion Date: Mon, 2 Mar 2020 21:32:01 -0600 Subject: [PATCH] add bitwise file, fix octal/hexadecimal explanation --- study/BITWISE.MD | 0 study/STUDY.MD | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 study/BITWISE.MD diff --git a/study/BITWISE.MD b/study/BITWISE.MD new file mode 100644 index 0000000..e69de29 diff --git a/study/STUDY.MD b/study/STUDY.MD index 73d9dbf..254b0ed 100644 --- a/study/STUDY.MD +++ b/study/STUDY.MD @@ -14,7 +14,7 @@ If you find something incorrect, feel free to contribute and modify. - [Table of Contents](#table-of-contents) - [All concepts](#all-concepts) - [Compound Assignment Operators](#compound-assignment-operators) - - [Octal Literals](#octal-literals) + - [Octal and Hexadecimal Literals](#octal-and-hexadecimal-literals) - [Common Mistakes](#common-mistakes) - [Binary Trees](#binary-trees) - [String.split Trailing Strings](#stringsplit-trailing-strings) @@ -55,7 +55,7 @@ x += 2.6; Compound assignment operators effectively cast *before assigning values* to the specified variables. -### Octal Literals +### Octal and Hexadecimal Literals Octal Literals are defined by a zero prefix.