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 :
_from__J__S__O__N.out
-- -*- M2-comint -*- hash: 905482569286342315 i1 : fromJSON "2" o1 = 2 i2 : fromJSON "2.71828" o2 = 2.71828 o2 : RR (of precision 53) i3 : fromJSON "\"Hello, world!\"" o3 = Hello, world! i4 : fromJSON "true" o4 = true i5 : fromJSON "false" o5 = false i6 : fromJSON "null" o6 = nil o6 : Symbol i7 : fromJSON "{\"foo\": 1, \"bar\": 2}" o7 = HashTable{"bar" => 2} "foo" => 1 o7 : HashTable i8 : fromJSON "[1, 2, 3]" o8 = {1, 2, 3} o8 : List i9 : jsonFile = temporaryFileName() | ".json" o9 = /tmp/M2-323843-0/0.json i10 : jsonFile << "[1, 2, 3]" << endl << close o10 = /tmp/M2-323843-0/0.json o10 : File i11 : fromJSON openIn jsonFile o11 = {1, 2, 3} o11 : List i12 :