/* * Copyright 2013-2025 chronicle.software; SPDX-License-Identifier: Apache-2.0 */ package mytest; public interface IntConsumer { void accept(int num); }