2024-07-05 15:19:18 +02:00
|
|
|
; AUTOGENERATED COPYRIGHT HEADER START
|
|
|
|
|
; Copyright (C) 2024 Michael Fabian 'Xaymar' Dirks <info@xaymar.com>
|
|
|
|
|
; AUTOGENERATED COPYRIGHT HEADER END
|
2024-07-05 12:55:44 +02:00
|
|
|
Include "004-incl.bb"
|
|
|
|
|
; Should be parsed as:
|
|
|
|
|
; Include(String("test.bb"))
|
|
|
|
|
; which should then jump to parsing "test.bb" relative to the current file.
|
|
|
|
|
|
|
|
|
|
iValue = iValue + 4
|
|
|
|
|
; Should be parsed as Assign(Variable(iValue), Add(Variable(iValue), Int32(4)))
|
|
|
|
|
|
|
|
|
|
Print iValue
|
|
|
|
|
; Should be parsed as Call(Function(Print), Variable(iValue))
|