Last Modified: 1/18/2021
Writes Data to the DataPtr&.
Name | Type | Required | Description |
Data | Integer | Yes | The Data you wish to write. |
Syntax: WriteInt <Data>[, <Data>] |
Dim a(5) As Integer b& = VarPtr&(a) DataPtr& = b& WriteInt 1,2,3,4,5,6 For n = 0 To 5 Print a(n) Next |