file d'attente de kotlin
import java.util.LinkedList
fun main() {
val queueA = LinkedList<Int>()
queueA.add(1)
queueA.add(2)
print(queueA.poll())
}
Shy Stork