Skip to content

Instantly share code, notes, and snippets.

@mcdee
Created October 5, 2018 08:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcdee/adbb2e9b7753c8c770335bd6afc248bb to your computer and use it in GitHub Desktop.
Save mcdee/adbb2e9b7753c8c770335bd6afc248bb to your computer and use it in GitHub Desktop.
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