package com.codegym.task.task16.task1619;

/*
No interrupt, no dice?

*/

public class Solution {
    private static boolean isRun;

    public static void main(String[] args) throws InterruptedException {

        Thread t = new Thread(new TestThread());
        t.start();
        Thread.sleep(3000);
        ourInterrupt();
    }

    public static void ourInterrupt() {

        isRun=false;

    }

    public static class TestThread implements Runnable {
        public void run() {
            while (!isRun) {
                try {
                    System.out.println("he-he");
                    Thread.sleep(500);

                } catch (InterruptedException e) {
                }
            }
        }
    }
}