// string_helper.aipubfnpluralize(word:str) -> str{// Simple pluralization logicif word.ends_with("s"){return word + "es";}return word + "s";}print(pluralize("apple"));// Undefined variable 'print'.// hello.ai// Import your moduleuse string_helpers;let word = "apple";let plural = string_helpers.pluralize(word);print(plural);// "apples"
We run cargo run hello.ai get "Undefined variable 'print'` error.
We run
cargo run hello.aiget "Undefined variable 'print'` error.