blob: 31fbc86892fa850dd4139e500470af505ff834ef [file] [log] [blame] [edit]
/*
* Copyright 2018, Data61, CSIRO (ABN 41 687 119 230)
*
* SPDX-License-Identifier: BSD-2-Clause
*/
procedure Echo {
string echo_string(in string s);
int echo_int(in int i);
float echo_float(in float f);
double echo_double(in double d);
int echo_mix(in double d);
int echo_parameter(in int pin, out int pout);
};