//// Copyright (c) 2016, Andy Frank// Licensed under the Academic Free License version 3.0//// History:// 22 Aug 2016 Andy Frank Creation//**** VersionCmd displays version and copyright information.**constclass VersionCmd : Cmd{overrideconst Str name := "version"overrideconst Str helpShort := "Display version and copyright information"overrideconst Str? helpFull := nulloverride Int run(){ info("Studs $typeof.pod.version Copyright (c) 2016 Andy Frank")return 0}}