One Hat Cyber Team
Your IP :
216.73.216.115
Server IP :
194.44.31.54
Server :
Linux zen.imath.kiev.ua 4.18.0-553.77.1.el8_10.x86_64 #1 SMP Fri Oct 3 14:30:23 UTC 2025 x86_64
Server Software :
Apache/2.4.37 (Rocky Linux) OpenSSL/1.1.1k
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
doc
/
Macaulay2
/
JSON
/
example-output
/
View File Name :
_to__J__S__O__N.out
-- -*- M2-comint -*- hash: 7496382761090516225 i1 : x = hashTable {"foo" => {1, 2, {pi, true, false, nil}}} o1 = HashTable{"foo" => {1, 2, {pi, true, false, nil}}} o1 : HashTable i2 : toJSON x o2 = {"foo": [1, 2, [3.141592653589793, true, false, null]]} i3 : toJSON(x, Indent => 2) o3 = { "foo": [ 1, 2, [ 3.141592653589793, true, false, null ] ] } i4 : toJSON(x, Indent => "\t") o4 = { "foo": [ 1, 2, [ 3.141592653589793, true, false, null ] ] } i5 : toJSON(x, ValueSeparator => " , ") o5 = {"foo": [1 , 2 , [3.141592653589793 , true , false , null]]} i6 : toJSON(x, NameSeparator => " : ") o6 = {"foo" : [1, 2, [3.141592653589793, true, false, null]]} i7 : toJSON(hashTable{"foo" => 1, "bar" => 2, "baz" => 3}, Sort => true) o7 = {"bar": 2, "baz": 3, "foo": 1} i8 :