Learn R Programming

fBasics (version 4021.92)

print: Print Control

Description

Unlists and prints a control object.

Usage

# S3 method for control
print(x, ...)

Value

print.control

prints control.

Arguments

x

the object to be printed.

...

arguments to be passed.

Examples

Run this code
## print -
   control = list(n = 211, seed = 54, name = "generator")
   print(control) 
   class(control) = "control"
   print(control)  

Run the code above in your browser using DataLab