User loginNavigation |
Nimrod: A new statically typed, compiled programming language which supports metaprogramming
I would like to share this language here as it has recently had a new version released. Nimrod resembles Python in that it uses whitespace to delimit blocks and Pascal because of the way that types are defined (TType). It supports metaprogramming with macros and templates. Code example: # compute average line length var count = 0 var sum = 0 for line in stdin.lines: count += 1 sum += line.len echo "Average line length: ", if count > 0: sum / count else: 0 By dom96 at 2013-05-21 19:20 | LtU Forum | previous forum topic | next forum topic | other blogs | 18272 reads
|
Browse archives
Active forum topics |
Recent comments
5 days 9 hours ago
41 weeks 3 hours ago
41 weeks 7 hours ago
41 weeks 7 hours ago
1 year 11 weeks ago
1 year 15 weeks ago
1 year 16 weeks ago
1 year 16 weeks ago
1 year 19 weeks ago
1 year 24 weeks ago