def p_condition_def(p):
    '''condition : cmd operator cmd 
				 | cmd operator variable
				 | value operator value
				 | variable operator cmd
				 | variable operator variable
				 | variable operator value
				 | value operator variable
				 | cmd
				 | assign_value
				 '''
    p[0] = symbol_coder.c_concatenate_with_character(p, ' ')
def p_condition_def(p):
	'''condition : cmd operator cmd 
				 | cmd operator variable
				 | value operator value
				 | variable operator cmd
				 | variable operator variable
				 | variable operator value
				 | value operator variable
				 | cmd
				 | assign_value
				 '''
	p[0] = symbol_coder.c_concatenate_with_character(p,' ')
def p_condition(p):
    '''mult_conds : condition log_oper mult_conds
				  | condition
				  '''
    p[0] = symbol_coder.c_concatenate_with_character(p, ' ')
def p_condition(p):
	'''mult_conds : condition log_oper mult_conds
				  | condition
				  '''
	p[0] = symbol_coder.c_concatenate_with_character(p,' ')