images updates for website

This commit is contained in:
Ethan Schoonover
2011-03-22 23:35:16 -07:00
parent af3f79d453
commit 0e12d90204
150 changed files with 4258 additions and 71 deletions
+16
View File
@@ -0,0 +1,16 @@
import java.util.Map;
import java.util.TreeSet;
public class GetEnv {
/**
* let's test generics
* @param args the command line arguments
*/
public static void main(String[] args) {
// get a map of environment variables
Map<String, String> env = System.getenv();
// build a sorted set out of the keys and iterate
for(String k: new TreeSet<String>(env.keySet())) {
System.out.printf("%s = %s\n", k, env.get(k));
}
} }