clear
echo $_FILE

;no error
#if ABC
	print 0
#endif
#ifdef ABC
	print 1
#endif
#ifndef ABC
	print 2
#endif


;#if 
;#endif
;#ifdef
;#endif
#ifndef
#endif


#ifdef SYMBOL 	//

 #if	$TRUE	;no error
 #endif

#endif


#ifndef SYMBOL 
 print 1
  #if $TRUE
   print 2
  #else
   print 3
  #endif
#else
  #if $TRUE
   print 2
  #endif

#endif

