Changes
From Biolecture.org
Created page with "<p># : program statement to improve understanding of the program. It is ignored when you run the program</p> <p>-w : It enables to print out error message when you make an error..."
<p># : program statement to improve understanding of the program. It is ignored when you run the program</p>
<p>-w : It enables to print out error message when you make an error.</p>
<p>print : It prints out the following character string, number to your monitor</p>
<p>\n : new line character. It designates the end of a line of text and the start of a new line</p>
<p>exit : Instruction for end of the program</p>
<p>Variable : The place to store data</p>
<p> 1. $ : Scalar, to store specific number or character string</p>
<p> 2. @ : Array, to store several values in sequence</p>
<p> 3. % : Associative array, dataset without sequence</p>
<p>= : Assignment operator to give a value to the variable</p>
<p>-w : It enables to print out error message when you make an error.</p>
<p>print : It prints out the following character string, number to your monitor</p>
<p>\n : new line character. It designates the end of a line of text and the start of a new line</p>
<p>exit : Instruction for end of the program</p>
<p>Variable : The place to store data</p>
<p> 1. $ : Scalar, to store specific number or character string</p>
<p> 2. @ : Array, to store several values in sequence</p>
<p> 3. % : Associative array, dataset without sequence</p>
<p>= : Assignment operator to give a value to the variable</p>