blob: 46720cce56e71784ce4afbf353bb42519b171cde (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Example 1.3
// SAMPLE PROGRAM 1: PRINTING A MESSAGE
//Printing Begins
printf("I see,I remember") //Printing using printf() function
//Printing ends
//We can also print a message using disp() function in scilab
disp("I see,I remember") //Printing using disp() function
|