I want to write software that shows the message "Hello Condividea."
{
"feature": {
"name": "HelloCondivideaProgram",
"language": "Rust",
"description": "Software that outputs the greeting 'Hello Condividea'.",
"function": {
"name": "printHello",
"inputs": [],
"outputs": [
{
"type": "string",
"value": "Hello Condividea"
}
]
}
}
}
fn print_hello() -> String {
"Hello Condividea".to_string()
}
fn main() {
let output = print_hello();
println!("{}", output);
}