(4 intermediate revisions by the same user not shown)
Line 7: Line 7:
 
Put your content here . . .
 
Put your content here . . .
  
<code>
+
<source lang="cpp">
 +
 
 +
class foo {
 +
public:
 +
    foo();
 +
    void toString() {
 +
 
 +
  }
 +
};
 
int main() {
 
int main() {
 
     for(int i = 0; i < 100; ++i) {
 
     for(int i = 0; i < 100; ++i) {
Line 13: Line 21:
 
   }
 
   }
 
}
 
}
</code>
+
 
 +
public static void main(String[] args) {
 +
  system.out.printline("Hello world");
 +
 
 +
 
 +
}
 +
 
 +
</source>
  
  
 
[[ 2009 Fall ECE 462 Lu|Back to 2009 Fall ECE 462 Lu]]
 
[[ 2009 Fall ECE 462 Lu|Back to 2009 Fall ECE 462 Lu]]

Latest revision as of 17:09, 27 August 2009


MyTempPageForECE462

Put your content here . . .

class foo {
public:
    foo();
    void toString() {
 
   }
};
int main() {
    for(int i = 0; i < 100; ++i) {
        printf("i = %d\n");
   }
}
 
public static void main(String[] args) {
   system.out.printline("Hello world");
 
 
}


Back to 2009 Fall ECE 462 Lu

Alumni Liaison

Abstract algebra continues the conceptual developments of linear algebra, on an even grander scale.

Dr. Paul Garrett