The R Project SVN R

Rev

Rev 13452 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 13452 Rev 60126
Line 13... Line 13...
13
## own balances.
13
## own balances.
14
##
14
##
15
## This is a very nifty way of creating "closures" and a little thought
15
## This is a very nifty way of creating "closures" and a little thought
16
## will show you that there are many ways of using this in statistics.
16
## will show you that there are many ways of using this in statistics.
17
 
17
 
-
 
18
#  Copyright (C) 1997-8 The R Core Team
-
 
19
 
18
open.account <- function(total) {
20
open.account <- function(total) {
19
 
21
 
20
    list(
22
    list(
21
	 deposit = function(amount) {
23
	 deposit = function(amount) {
22
	     if(amount <= 0)
24
	     if(amount <= 0)