Data update

This commit is contained in:
Ingy döt Net 2026-02-01 16:33:20 -08:00
parent 5150844a7d
commit 4bb20c9b71
7735 changed files with 38060 additions and 199180 deletions

View file

@ -1,2 +0,0 @@
01 ptr USAGE IS POINTER TO Some-Type.
01 prog-ptr USAGE IS PROGRAM-POINTER TO "some-program".

View file

@ -1,6 +0,0 @@
01 heap-item PICTURE IS X, BASED.
PROCEDURE DIVISION.
ALLOCATE heap-item RETURNING ptr
*> ...
FREE ptr

View file

@ -1 +0,0 @@
SET prog-ptr TO ENTRY "some-program"

View file

@ -1,2 +0,0 @@
SET ptr1 UP BY 10
SET ptr2 DOWN BY LENGTH OF foo

View file

@ -1,2 +0,0 @@
SET ptr1 TO ptr2 *> ptr1 points to where ptr2 points
SET ptr2 TO ADDRESS OF ptr3 *> ptr2 points to ptr3

View file

@ -1,2 +0,0 @@
SET ADDRESS OF foo TO ptr
MOVE "bar" TO foo

View file

@ -1 +0,0 @@
01 obj USAGE IS OBJECT-REFERENCE "some-object".

View file

@ -1,2 +0,0 @@
INVOKE SomeClass "new" RETURNING obj-ref
SET another-obj-ref TO obj-ref