How to input struct into parameter in remix Code Example
how to input struct into parameter in remix
// say the function parameter is: MyStruct memory myStruct
// and MyStruct is defined as {uint number, bool isPositive}
// an example input in remix is as follows: [10, true]