Files
Michael Fabian 'Xaymar' Dirks 22c7614e7c Fix CRLF and submodules with auto-generated copyright headers
We no longer add another character to the file every time it is committed, and instead now properly handle CRLF. Additionally submodules are no longer updated when they shouldn't be, without requiring a manual config edit.
2024-07-05 15:19:18 +02:00

13 lines
472 B
BlitzBasic

; AUTOGENERATED COPYRIGHT HEADER START
; Copyright (C) 2024 Michael Fabian 'Xaymar' Dirks <info@xaymar.com>
; AUTOGENERATED COPYRIGHT HEADER END
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))