001package edu.pdx.cs410J.kata;
002
003import com.google.common.annotations.VisibleForTesting;
004
005/**
006 * A class for getting started with a code kata
007 *
008 * Use IntelliJ's "Refactor | Rename..." command to change the name of this
009 * class (and its tests).
010 */
011public class Kata {
012
013  @VisibleForTesting
014  public static void main(String[] args) {
015    System.err.println("Missing command line arguments");
016  }
017}