I found the symbol :=: in some Clarion code, and I can't figure out exactly what it does. The code was written by a previous developer many years ago, so I canβt ask him. I also could not find any results for "colon equals colon" on Google.
Here is a sample code where bufSlcdpaDtl is a file object:
lCCRecord Like(bufSlcdpaDtl),Pre(lCCRecord) ! ...other stuff... lCCRecord :=: bufSlcdpaDtl
I am wondering if this is like ::= in Python or perhaps the assignment operator := .
source share