contract ExampleContract {

	string immutable public name;

	constructor(string memory _name) {
		name = _name;
	}
}