WriteInt

Last Modified: 1/18/2021

Writes Data to the DataPtr&.

Arguments

NameTypeRequiredDescription
Data Integer Yes The Data you wish to write.

Example

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

Remarks

The size of the Data is word length (Integer).

See Also

Write, WriteLong