From 437d6fbebe3152bf54823a01a5bf4c20fc5fe8b9 Mon Sep 17 00:00:00 2001 From: jacobo10s <142448228+JACOBO10S@users.noreply.github.com> Date: Mon, 29 Sep 2025 22:51:39 +0200 Subject: [PATCH] Create short line up --- short line up | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 short line up diff --git a/short line up b/short line up new file mode 100644 index 0000000000..4c4f762dd6 --- /dev/null +++ b/short line up @@ -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" 🤷"); + } +} +