import com.hftcollections.*;
public class HFTCollectionsExample {
public static void main(String[] args) {
NonBlockingHashMap<Integer, String> map = new NonBlockingHashMap<>();
map.put(1, "Hello");
map.put(2, "World");
String value = map.get(1);
System.out.println(value); // Output: Hello
}
}