From a107f175d63a34ab5528b681b6c26e5339d7ffc4 Mon Sep 17 00:00:00 2001 From: "Harry Clark (clarkh9)" Date: Sat, 7 Jan 2023 00:55:28 +0000 Subject: [PATCH] Update data_types.md --- markdown/libraries/data_types.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/markdown/libraries/data_types.md b/markdown/libraries/data_types.md index 6aab219..0aa7076 100644 --- a/markdown/libraries/data_types.md +++ b/markdown/libraries/data_types.md @@ -30,3 +30,11 @@ variable except with the added benefit of one-liners in order to make your code # END RESULT: ``Hello Harry`` + +# NOTE: + +It should be noted that while you can make the declrative of a macro anything such as an ``int, char, string, bool, double, float, const, etc`` +You CANNOT define a macro as a ``struct`` otherwise it will not work + +By all means, you can do what I did in the first screenshot and define a macro with the same name as the struct but it needs to explictially state +that it is a struct otherwise it will not work for some reason?!