You are viewing a single comment's thread from:

RE: Question for Programmers

in #life6 years ago (edited)

Yep, only time that breaks down is when you cross paradigms, such as imperative to functional as the structure and how you do things is worlds apart.

But within a paradigm all skills translate. Really easy to move between C style languages as the basics all feel really familiar :)

If you want to see what I mean in the shift of mind set in functional languages I wrote a series building the basics for a roguelike game in F#. Detailing the thought process I went through as I wrote it.

Here is the final part in the series but it links to all the earlier parts.

A real succinct language that when you are used to reading it makes a great deal of sense but can look like gibberish when you first encounter as you can partially apply functions. This means you can them with too few arguments and it results in a new function with the remaining arguments. The functions do not actually call until they get the last argument they need.

Sort:  

Thanks, I'm gonna check out your series.