19 lines
352 B
Java
19 lines
352 B
Java
/*
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
|
*/
|
|
|
|
package com.mycompany.botsencrypter;
|
|
|
|
/**
|
|
*
|
|
* @author 250405
|
|
*/
|
|
public class BotsEncrypter {
|
|
|
|
public static void main(String[] args) {
|
|
for (int i = 0; i < 10; i++) {
|
|
System.out.println("Olaaa!!");
|
|
}
|
|
}
|
|
}
|