summaryrefslogtreecommitdiffhomepage
path: root/d.html.markdown
diff options
context:
space:
mode:
authorNickPapanastasiou <nickpap9411@gmail.com>2015-06-07 22:52:34 -0400
committerNickPapanastasiou <nickpap9411@gmail.com>2015-06-07 22:52:34 -0400
commitf8da3b96ff93723f5e61aff24da7aa9e1c65f4a8 (patch)
treed0114a3b54c9170650fac2edc86f9569901f086a /d.html.markdown
parentc5ac70f706802e9642c7ddc81caf88482a0eb2c6 (diff)
fucking syntax highlighting
Diffstat (limited to 'd.html.markdown')
-rw-r--r--d.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/d.html.markdown b/d.html.markdown
index be9f8fb0..f3836c2c 100644
--- a/d.html.markdown
+++ b/d.html.markdown
@@ -63,7 +63,7 @@ We can define new types and functions with `struct`, `class`, `union`, and `enum
are passed to functions by value (i.e. copied) and classes are passed by reference. Futhermore,
we can use templates to parameterize all of these on both types and values!
-```
+```d
// Here, T is a type parameter. Think <T> from C++/C#/Java
struct(T) LinkedList {
T data = null;