View Site
Password:
Save as a Page?
Page Name:
\w chars only!!!
Page Title:
Save as Tab?:
Tags (seperated via comma):
Post:
Just a quick test of the <a href='http://code.google.com/p/syntaxhighlighter/'>syntax highlighter</a>. Seems to be working, but it's ugly. This post also serves as a note to self to fix the bleeding stylesheet and make some readable colors. [code lang=perl] #!/usr/bin/perl use strict; use integer; # the nth element of the fibonacci series # param n - an int >= 0 # return an int >= 0 sub fib($) { my $n = shift, $a = 1, $b = 1; ($a, $b) = ($a + $b, $a) until (--$n < 0); return $a; } print fib(10); [/code]