NeedShowSave 関数は、ショーファイルに保存されていない変更があるかどうかを示す boolean 値を返します。
この関数は、引数を受け取りません。
この例では、ショーファイルを保存するかどうかを示すフィードバックを出力します。
return function () -- Check if the show should be saved. if NeedShowSave() then Printf("You should save your showfile.") else Printf("You do not need to save your showfile.") endend