chapter7-code-11

PHOTO EMBED

Thu Mar 30 2023 09:54:46 GMT+0000 (Coordinated Universal Time)

Saved by @RareSkills

pragma solidity ^0.8.12;
contract ExampleContract {

	function useArrays(string calldata user) public pure returns(string memory) {
		return string.concat("hello ", user);
	}
}
content_copyCOPY