weighted-average.scm 259 B

1234567891011121314
  1. #!/usr/bin/guile -s
  2. !#
  3. (define (main args)
  4. (display "Please enter the matrix of the form")
  5. (display "\n")
  6. (display "1 2 3, 2 4 5")
  7. (display "\n")
  8. ;; create a named let that loops until you guess the number correctly.
  9. (define matrix (read))
  10. )