Created
October 5, 2018 08:03
-
-
Save mcdee/adbb2e9b7753c8c770335bd6afc248bb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.23; | |
pragma experimental ABIEncoderV2; | |
contract Test { | |
function test(string[] _words) public pure returns (string) { | |
return _words[0]; | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment