Skip to content

Instantly share code, notes, and snippets.

Created October 26, 2016 19:58
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 anonymous/ac9812a045a41fd4168f2e352732962d to your computer and use it in GitHub Desktop.
Save anonymous/ac9812a045a41fd4168f2e352732962d to your computer and use it in GitHub Desktop.
Created using browser-solidity: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://ethereum.github.io/browser-solidity/#version=soljson-v0.4.3+commit.2353da71.js&optimize=undefined&gist=
pragma solidity ^0.4.3;
contract Test {
function getData() constant returns (bytes32, bytes32, bytes32, bytes32,
bytes32, bytes32, bytes32, bytes32,
bytes32, bytes32, bytes32, bytes32,
bytes32, bytes32) {
return ("a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n");
}
}
pragma solidity ^0.4.3;
contract Test {
function getData() constant returns (bytes32, bytes32, bytes32, bytes32,
bytes32, bytes32, bytes32, bytes32,
bytes32, bytes32, bytes32, bytes32,
bytes32, bytes32, bytes32) {
return ("a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment