diff --git a/README.md b/README.md
index b809e4a..6cffc1c 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ let navigator =
About
-let some_list =
+let some_list =
\for item in items:
- \{escape item}
@@ -55,6 +55,10 @@ If you are using vscode, you can also install the language extension `ide/vscode
If you're sold on the language and want to embed it in your application, just add the `wl.c` and `wl.h` files to your build and read the "Embedding" section.
+If you get stuck, have questions, or want to contribute, feel free to open an issue or join my discord server [here](https://discord.gg/XhVH3Dzn).
+
+Happy templatin'!
+
## Embedding
WL programs need to first be translated to bytecode, then evaluated in a virtual machine. The bytecode is completely standalone and can be cached.
@@ -200,7 +204,7 @@ for (bool done = false; !done; ) {
break;
case WL_EVAL_SYSVAR:
-
+
if (wl_streq(res.str, "varA", -1))
wl_push_s64(rt, 1);