Lines Matching refs:string
39 export def GetMessage(): string
47 def GetPart(nr: number): string
58 The `export def GetMessage(): string` line starts with `export`, meaning that
63 In the `export def GetMessage(): string` line you will notice the colon and
85 it is a string. If you initialize with a number, then the type is number: >
90 If you try to assign a string to this variable, you will get an error: >
100 let word: string
126 arguments to numbers, and any string without a number results in zero!
132 def ExtendAndReturn(add: string): string
141 E1013: type mismatch, expected number but got string
144 For string concatenation ".." must be used. This avoids mistakes and avoids
151 def ReportResult(result: string)
159 def Store(key: string, value: any)