diff --git a/all.sas b/all.sas index e1571ba..a8cf5ba 100644 --- a/all.sas +++ b/all.sas @@ -17693,6 +17693,8 @@ filename &fref1 clear; %macro ml_json(); data _null_; file "%sysfunc(pathname(work))/ml_json.lua"; + put '-- NOTE - THE COPYRIGHT BELOW IS IN RELATION TO THE JSON.LUA FILE ONLY '; + put '-- THIS FILE STARTS ON THE NEXT LINE AND WILL FINISH WITH "JSON.LUA ENDS HERE" '; put '-- '; put '-- json.lua '; put '-- '; @@ -18064,6 +18066,8 @@ data _null_; put 'end '; put ' '; put 'return json '; + put ' '; + put '-- JSON.LUA ENDS HERE '; run; %inc "%sysfunc(pathname(work))/ml_json.lua"; diff --git a/lua/json.lua b/lua/json.lua index 1994588..3200b63 100644 --- a/lua/json.lua +++ b/lua/json.lua @@ -1,3 +1,5 @@ +-- NOTE - THE COPYRIGHT BELOW IS IN RELATION TO THE JSON.LUA FILE ONLY +-- THIS FILE STARTS ON THE NEXT LINE AND WILL FINISH WITH "JSON.LUA ENDS HERE" -- -- json.lua -- @@ -369,3 +371,5 @@ function json.decode(str) end return json + +-- JSON.LUA ENDS HERE \ No newline at end of file diff --git a/lua/ml_json.sas b/lua/ml_json.sas index 2493e5d..ad01538 100644 --- a/lua/ml_json.sas +++ b/lua/ml_json.sas @@ -12,6 +12,8 @@ %macro ml_json(); data _null_; file "%sysfunc(pathname(work))/ml_json.lua"; + put '-- NOTE - THE COPYRIGHT BELOW IS IN RELATION TO THE JSON.LUA FILE ONLY '; + put '-- THIS FILE STARTS ON THE NEXT LINE AND WILL FINISH WITH "JSON.LUA ENDS HERE" '; put '-- '; put '-- json.lua '; put '-- '; @@ -383,6 +385,8 @@ data _null_; put 'end '; put ' '; put 'return json '; + put ' '; + put '-- JSON.LUA ENDS HERE '; run; %inc "%sysfunc(pathname(work))/ml_json.lua";