//// Copyright (c) 2016, Andy Frank// Licensed under the Apache License version 2.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-$Date.today.year Andy Frank")return 0}}