1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-23 23:03:40 +02:00

fucking syntax highlighting

This commit is contained in:
NickPapanastasiou
2015-06-07 22:52:34 -04:00
parent c5ac70f706
commit f8da3b96ff

View File

@@ -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;