From d5ec90f700e7e4c55d8eb0473a3596c3b55adf94 Mon Sep 17 00:00:00 2001 From: dom96 Date: Thu, 24 Jan 2013 09:02:43 -0800 Subject: [PATCH] Created Coding Guidelines (markdown) --- Coding-Guidelines.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Coding-Guidelines.md diff --git a/Coding-Guidelines.md b/Coding-Guidelines.md new file mode 100644 index 0000000..a2b2aeb --- /dev/null +++ b/Coding-Guidelines.md @@ -0,0 +1,3 @@ +* Use the implicit "result" variable and try to avoid "return". +* Do not use templates/macros when an inline proc suffices. +* Do not use "nil" for strings and sequences. The procs of the standard library which misuse "nil" as an error value will be deprecated.