Reorganisation, plus de warnings

This commit is contained in:
Justine
2022-12-21 12:26:03 +01:00
parent addf71edd2
commit 3d52e22056
3 changed files with 128 additions and 109 deletions

View File

@ -0,0 +1,8 @@
pub fn autocomplete(input: &String) -> String {
let faketab = format!(" --This is a fake output for autocomplete from {input}-- ");
//In reality, we would keep the input and append to it
let aaa = String::from(faketab);
return aaa;
}