Friday, June 20, 2008

google syntaxhighlighter

recently i've found the google javascript syntaxhighlighter. it looks kind of like this - i can't get the blog to not to convert line breaks in a pre-tag to br-tags. but i think you can guess what it does ... and it's quite cool.
  1. public static void swap(int[] a, int i, int j) {  
  2.   int temp = a[i];  
  3.   a[i] = a[j];  
  4.   a[j] = temp;  
  5. }  

No comments: