Fun to Program – Language basics

Date: 2013/08/27 (initial publish), 2021/08/02 (last update)

Source: en/fun2-00027.md

Previous Post Top Next Post

TOC

This was originally written and created around 2013 and may require to be updated. (2021)

Language basics

See Wikipedia article on programing language.

Please note this may be inaccurate.

Both return and exit are used for similar purposes for many languages.

For the C++ language, you need to be careful uing exit in main() since no destructor will be called for the locally scoped objects for exit.

Previous Post Top Next Post