/* c-basic-offset: 2; tab-width: 2; indent-tabs-mode: nil
 * vi: set shiftwidth=2 tabstop=2 expandtab:
 * :indentSize=2:tabSize=2:noTabs=true:
 */

import org.junit.*;

import common.Utils;

public class TestHash {
  @Test
  public void test1 () {
    System.out.println(Utils.hash_func("Hello World"));
  }

}
