Retrieves the version of a SyncroSim Session.

version(session = NULL)

# S4 method for character
version(session = NULL)

# S4 method for missingOrNULL
version(session = NULL)

# S4 method for Session
version(session = NULL)

Arguments

session

Session object

Value

A character string e.g. "2.2.13".

Examples

# \donttest{
# Set SyncroSim Session
mySession <- session()

# Retrieve version of SyncroSim associated with Session
version(mySession)
#> [1] "2.4.44"
# }