Explore >> Select a destination


You are here

herbsutter.com
| | www.dotnet-tv.com
4.0 parsecs away

Travel
| | [AI summary] The post discusses the Nemerle programming language, highlighting its features and capabilities as a .NET platform language.
| | blog.robbowley.net
4.1 parsecs away

Travel
| |
| | www.softdevtube.com
4.2 parsecs away

Travel
| | Passing data through a pipeline of transformations is an alternative approach to classic Object-Oriented Programming (OOP). The LINQ methods in .NET are designed around this, but the pipeline approach can be used for so much more than manipulating collections. This presentation looks at pipeline-oriented programming and how it relates to functional programming, the open-closed principle,
| | jborza.com
23.1 parsecs away

Travel
| See the source book Programming in Lua targeted at Lua 5.0. Here are my notes in case I need to come back to it. Ill mostly note the differences to Python as thats what Im used to these days. Chunks Every piece of code is a chunk Semicolons may optionally follow statements This is valid, but ugly: a = 1 b = a*2 Global variables Dont need declaration, just assign a value to create it.