Sandbox

This is a test post I use for testing various stuff.

(defun xplusone (x) (+ 1 x))

(defun x (y)
  (+
    (- 3 4)
    (+ 5 6)
    (* 4 2)))
function showMilitaryTime() {  
     if (document.theForm.showMilitary[0].checked) {
          return true;
     }
     return false;
}
#include <stdio.h>
int main(){

    int dividend, divisor, quotient, remainder;

    printf("Enter dividend: ");
    scanf("%d", &dividend);

    printf("Enter divisor: ");
    scanf("%d", &divisor);

    // Computes quotient
    quotient = dividend/divisor;

    // Computes remainder
    remainder = dividend%divisor;

    printf("Quotient = %d\n",quotient);
    printf("Remainder = %d",remainder);

    return 0;
}
Unstyled  
Should look like what?  

Douglas Fields

Writing LISP and Haskell since 1990