<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">import java.util.Map;

/**
 * The Java back end uses properties
 * instead of environment variables.
 * This wrapper loads the env variables
 * into the standard set of properties.
 */
public class Reg029Wrapper {
  public static void main(String args[]) {
    Map&lt;String, String&gt; env = System.getenv();
    for (String key : env.keySet()) {
      System.setProperty(key, env.get(key));
    }
    reg029.main(args);
  }
}
</pre></body></html>