In Ring 1.25 (GitHub) - RingVM_WriteRingo() function
11 views
Skip to first unread message
Mahmoud Fayed
unread,
Dec 26, 2025, 4:38:34 PM (2 days ago) Dec 26
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to The Ring Programming Language
Hello
This is one of the new features provided by Ring 1.25 (under development)
This function writes a Ring Object File (*.ringo) from a Ring list.
The list contains five sublists:
List of files
List of functions
List of classes
List of packages
List of bytecode instructions
Example:
cFileName="pwct.ringo"cFileContent=read(cFileName)cOutputFile="mypwct.ringo"?"Read the object file..."aList=ringvm_ringolists(cFileContent)?"Write another object file..."ringvm_writeringo(cOutputFile,aList)