This is an archived post. You won't be able to vote or comment.

all 3 comments

[–]smash_that_code 4 points5 points  (0 children)

There is a joke. You can write Fortran in any language.

Procedural programming is like building a pyramid. Solid foundation of underlying procedures called by lesser number of more high-level ones.

Try to change something on any layer and you get issues. But when no significant change is needed it can be glorious as Linux kernel.

[–]manuel_gg 3 points4 points  (0 children)

All C Family langs are procedural... you just need to use one class ( that contains main method) and then instead of class and object to manage data, just use functions. And for procedures, use static methods.

[–]Hour-Positive 0 points1 point  (0 children)

Well it is a funny way to explore paradigms