Java tutorial
//package com.java2s; //License from project: Open Source License import java.util.*; public class Main { public static Object firstFrom(Collection collection) { return collection.iterator().next(); } }