14 lines
245 B
Text
14 lines
245 B
Text
import extensions;
|
|
|
|
extension listOp
|
|
{
|
|
randomItem()
|
|
= self[Random.nextInt(self.Length)];
|
|
}
|
|
|
|
public program()
|
|
{
|
|
auto item := new int[]{0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
|
|
|
|
Console.printLine("I picked element ",item.randomItem())
|
|
}
|