Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.util.concurrent.atomic.AtomicInteger;

public class Main {
    public static void main(String[] argv) throws Exception {
        AtomicInteger atomicInteger = new AtomicInteger(20);

        System.out.println(atomicInteger.get());
    }
}