From 4301d2858585a982bd81920913891c9340819895 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Mon, 14 Apr 2014 04:42:43 -0700 Subject: [PATCH] Updated Pygments issues (markdown) --- Pygments-issues.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Pygments-issues.md b/Pygments-issues.md index fd81238..8946a71 100644 --- a/Pygments-issues.md +++ b/Pygments-issues.md @@ -10,4 +10,14 @@ var x = 0f64 # This is red. ## Troubles with triple quotes -Files like [examples/cross_todo/nimrod_backend/backend.nim](https://github.com/Araq/Nimrod/blob/master/examples/cross_todo/nimrod_backend/backend.nim) seem to have troubles with triple quotes, maybe because they use ``sql``? \ No newline at end of file +Files like [examples/cross_todo/nimrod_backend/backend.nim](https://github.com/Araq/Nimrod/blob/master/examples/cross_todo/nimrod_backend/backend.nim) seem to have troubles with triple quotes, maybe because they use ``sql``? + +## Generics + Operators + +```nimrod +proc `[]`[T](x: int, args: varargs[T, `$`]) = + for arg in args: + echo arg + +1[1, "x", 3] +``` \ No newline at end of file