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 | 18202 reads
|
Browse archives
Active forum topics |
Recent comments
32 weeks 6 days ago
33 weeks 1 hour ago
33 weeks 1 hour ago
1 year 3 weeks ago
1 year 7 weeks ago
1 year 8 weeks ago
1 year 8 weeks ago
1 year 11 weeks ago
1 year 16 weeks ago
1 year 16 weeks ago