#!/bin/sh
#] 
#] *********************
#] $ bash "$d_bin"'eval function test.sh' 
# www.BillHowell.ca  16Oct2024 initial 
# view in text editor, using constant-width font (eg courier), tabWidth = 3


#24************************24




#24************************24
# List of operators, generated with :
# $ grep  "^#]"  "$d_bin"'eval function test.sh' |  sed "s/^#\]/  /" 

#




#08********08
# Setup 

source  "$d_bin""standard header.sh"



#08********08
# code 

	func1()
{  
	echo 'func1'
}


	func2()
{  
	echo 'func2'
}



	eval_functionTest()
{  
	echo  'testing func1'
	eval  'func1'
	echo  'testing func2'
	eval  'func2'
	echo  'testing a variable representing func1'
	funcSym='func1'
	eval  "$funcSym"
}



#08********08
# Procedures -  To run :



#08********08
# run - select one of options

	eval_functionTest



# $ bash  "$d_bin"'eval function test.sh'  

# enddoc
