Browse Source

ZipCode Rocks files

Trinh Tong 6 years ago
parent
commit
ed2c2384ad
4 changed files with 21 additions and 0 deletions
  1. 0
    0
      README.TXT
  2. BIN
      ZipCodeRocks.class
  3. 6
    0
      ZipCodeRocks.ctxt
  4. 15
    0
      ZipCodeRocks.java

+ 0
- 0
README.TXT View File


BIN
ZipCodeRocks.class View File


+ 6
- 0
ZipCodeRocks.ctxt View File

1
+#BlueJ class context
2
+comment0.target=ZipCodeRocks
3
+comment0.text=\n\ Write\ a\ description\ of\ class\ ZipCodeRocks\ here.\n\n\ @author\ (your\ name)\n\ @version\ (a\ version\ number\ or\ a\ date)\n
4
+comment1.params=args
5
+comment1.target=void\ main(java.lang.String[])
6
+numComments=2

+ 15
- 0
ZipCodeRocks.java View File

1
+
2
+/**
3
+ * Write a description of class ZipCodeRocks here.
4
+ *
5
+ * @author (your name)
6
+ * @version (a version number or a date)
7
+ */
8
+public class ZipCodeRocks
9
+{
10
+    public static void main(String[] args) 
11
+    {
12
+        System.out.print("Zipcode Rocks!");
13
+    }
14
+}
15
+