R/xegaVersion.R

Defines functions xegaVersion

Documented in xegaVersion

#
# (c) 2021 Andreas Geyer-Schulz
#          Simple Genetic Algorithm in R. V 0.1
#          Layer: Top-level main programs.     
#          Package: xega
#

#' About this version.
#'
#' @param verbose  Boolean. If \code{TRUE} (Default), print 
#'                 package information and version number to the console.
#'
#' @return Version number (invisible).
#'
#' @examples
#' xegaVersion()
#' @export
xegaVersion<-function(verbose=TRUE)
{
        version<-"0.9.0.23"
        if (verbose)
	{cat('Package xega. Version', version, 'As of 2026/02/16 \n')
	cat('(c) 2026 Andreas Geyer-Schulz\n')}
        invisible(version)

}

Try the xega package in your browser

Any scripts or data that you put into this service are public.

xega documentation built on Feb. 17, 2026, 5:07 p.m.