Retrieves the version of a SyncroSim Session.
Usage
version(session = NULL)
# S4 method for class 'character'
version(session = NULL)
# S4 method for class 'missingOrNULL'
version(session = NULL)
# S4 method for class 'Session'
version(session = NULL)
Arguments
- session
Session
object
Examples
# \donttest{
# Set SyncroSim Session
mySession <- session()
# Retrieve version of SyncroSim associated with Session
version(mySession)
#> [1] "3.0.9"
# }