Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. function getData() constant returns (bytes32, bytes32, bytes32, bytes32,
  2. bytes32, bytes32, bytes32, ...) {
  3. bytes32 a = "a";
  4. bytes32 b = "b";
  5. bytes32 c = "c";
  6. bytes32 d = "d";
  7. bytes32 e = "e";
  8. bytes32 f = "f";
  9. bytes32 g = "g";
  10. return (a, b, c, d, e, f, g, ...);
  11. }
  12.  
  13. FunctionDefinition = 'function' Identifier? ParameterList
  14. ( FunctionCall | Identifier | 'constant' | 'external' | 'public' | 'internal' | 'private' )*
  15. ( 'returns' ParameterList )? Block
  16. [...]
  17.  
  18. ParameterList = '(' ( TypeName Identifier? (',' TypeName Identifier?)* )? ')'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement