RosettaCodeData/Task/JSON/Harbour/json-2.harbour

5 lines
119 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
LOCAL arr := { 101, { 18, "Test1" }, 18, .F. }
? hb_jsonEncode( arr )
// The output is:
// [101,[26,"Test1"],18,false]