1 package edu.pdx.cs.joy.kata;
2
3 import com.google.common.annotations.VisibleForTesting;
4
5 /**
6 * A class for getting started with a code kata
7 *
8 * Use IntelliJ's "Refactor | Rename..." command to change the name of this
9 * class (and its tests).
10 */
11 public class Kata {
12
13 @VisibleForTesting
14 public static void main(String[] args) {
15 System.err.println("Missing command line arguments");
16 }
17 }