RosettaCodeData/Task/Search-a-list/Ecstasy/search-a-list.ecstasy
2024-07-13 15:19:22 -07:00

12 lines
330 B
Text

module test {
@Inject Console console;
void run() {
String[] haystack = ["this", "needle", "is", "a", "test"];
if (Int pos := haystack.indexOf("needle")) {
console.print($"Found the needle at {pos=}");
} else {
console.print("No needle in the haystack");
}
}
}