BuildDetails は、入力引数をとらない object-free 関数です。
BuildDetails 関数は、バージョンやビルド日時など、ステーションのビルドの詳細を返します。
BuildDetails(nothing): table:build details
この例では、ステーションのビルドの詳細を Command Line History に出力しています。
local function main() Printf("CompileTime: "..BuildDetails().CompileTime) Printf("CompileDate: "..BuildDetails().CompileDate) Printf("Big Version: "..BuildDetails().BigVersion) Printf("Small Version: "..BuildDetails().SmallVersion) Printf("HostType: "..BuildDetails().HostType) Printf("HostSubType: "..BuildDetails().HostSubType) end return main