Programming
Begin with End 
| Begin with End in mind |
|
|
|
| Written by SK Cheah | |
| Saturday, 26 April 2008 | |
Begin with End in mindThe most basic common element of programming language is the indicator of “begin” and “end” of process code. This is very first step of compiler/interpreter look for, before it able to perform it task. Some special case in certain language is treated first encounter code as “begin”; however, still needed to code in “end” indicator (i.e. BASIC - End). Or in opposite way is just code in “begin” indicator, and it has default “end” (i.e. C++ single-line comment (//) has the end of line ASCII code as “end”).
End * There are many variance of BASIC; example here for BASIC is base on Visual Basic.
{ … }
<HEAD> … </HEAD> Note & Tips: Beginner may make simple mistake in forget to closing of codes and causing error (or sometime misbehave) of program. Simple solution is always discipline in typing by pair of “begin” and “end” indicator, and then continues coding in between these “begin” and “end”. Other “lazy” (or smart) way is by using programming editor help to prevent this simple mistake, in example notepad++ . |
|
| Last Updated ( Thursday, 15 May 2008 ) |
| < Prev | Next > |
|---|






