#ImportModules
import ShareYourSystem as SYS

#print
print('The translate gives')
print(
	SYS.translate(
		"#BonjourStr Erwan #EndStr",
		{
			'#BonjourStr':'Salut',
			'#EndStr':'!'
		}
	)
)


#print
print('\nThe replace gives')
print(
	SYS.replace(
		{
			'MyStr':"#BonjourStr Erwan #EndStr",
			'MyInt':'#MyInt',
			'MyTotalInt':'#get:>>#MyInt+2',
			'MyDict':{
				'MyStr':'#BonjourStr'
			}
		},
		{
			'#BonjourStr':'Salut',