12 lines
330 B
Text
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");
|
|
}
|
|
}
|
|
}
|