From 11456d75e320cea7892544e1f45e3030a75c7857 Mon Sep 17 00:00:00 2001 From: flaviut Date: Tue, 21 Oct 2014 16:18:09 -0700 Subject: [PATCH] Updated Common Criticisms (markdown) --- Common-Criticisms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common-Criticisms.md b/Common-Criticisms.md index 3975230..c7087be 100644 --- a/Common-Criticisms.md +++ b/Common-Criticisms.md @@ -9,4 +9,4 @@ var b: T = ... foo(b) # also valid and equivalent ``` -Note that the difference between what happens in Java and what Nim does is simply a matter of efficiency: Nim does not require our `T` to be allocated on the heap. \ No newline at end of file +Note that the difference between what happens in Java and what Nim does is simply a matter of efficiency: Nim does not require our `T` to be allocated on the heap, and it certainly allows `b` to be declared with `let`, which will force an compile-time error to be thrown. \ No newline at end of file