'==========================================================================
'
' VBScript Source File -- Created with SAPIEN Technologies PrimalSCRIPT(TM)
'
' NAME: <ifThen.vbs>
'
' AUTHOR: ed wilson , mred
' DATE  : 5/26/2003
'
' COMMENT: <issustrates use of if then>
'
'==========================================================================
On Error Resume next
Const a = 2
Const b = 3
Const c = 5
If a + b =  c Then 
	WScript.Echo(c)
End if
