Create short line up

This commit is contained in:
jacobo10s 2025-09-29 22:51:39 +02:00 committed by GitHub
parent b51bfb7a77
commit 437d6fbebe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

17
short line up Normal file
View file

@ -0,0 +1,17 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
library SillyStringUtils {
struct Haiku {
string line1;
string line2;
string line3;
}
function shruggie(string memory _input) internal pure returns (string memory) {
return string.concat(_input, unicode" 🤷");
}
}