START and End

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 3

!

START start_1

!let $myvariable#=100

!echo $myvariable#

0!prompt

0======================================

0 this is a prompt, processing finished.

0!prompt

1 enter your name []>'$responseHolder#',A,8

0!prompt

1 enter your name[ ]>'$responseHolder#',A,8,Option1,Option2,Option3

0!prompt

1 enter your month [ ]>'$responseHolder#',n,1,2,2,4,5,6,7,8,9

!REM comment anything here

#some description

#more comment
//----------------------------------------------Conditional Statement------------------------------------------------------------
--------------

0!prompt

0======================================================

01 Is it wednesday? [Y]>'$response#',A,1,Y,y,N,n

0!If $response#='Y', then

0!echo "yes"

0!end if

0!prompt

1 Is it wednesday? [Y]>'$response#',A,1,Y,y,N,n

0!If $response#='Y', then

0!echo "yes"

0!else

0!echo "no"

0!end if

!prompt

1 Is it wednesday? [Y]>'$response#',a,1,Y,N,y,n

!If $response#='Y', then

!echo "YES"

!elseif $response#='N', then

!echo "NO"

!else
!echo "no option"

!end if

//------------------------------------------------------SUBROUTINES---------------------------------------------------------------
------

!End

You might also like