new screenshots and revisions to README for website

This commit is contained in:
Ethan Schoonover
2011-03-30 12:49:55 -07:00
parent 79cf0717ec
commit 1d22b2cec4
561 changed files with 775 additions and 1478 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));
}
} }