bcc icon indicating copy to clipboard operation
bcc copied to clipboard

A next-generation bcc parser for BlitzMax

Results 105 bcc issues
Sort by recently updated
recently updated
newest added

```BlitzMax SuperStrict Framework Brl.StandardIO '!printf("hello"); 'what? '!printf("I said hello"); 'remove the comment to make it break ``` Remove the last line comment and the generated code becomes: ```C ... #line...

Given a file test.txt that contains `This is a test string. Sentence 1. Sentence 2.` and the following program: ```blitzmax Framework BRL.StandardIO Import BRL.Filesystem Local File:TStream = ReadFile("test.txt") Local Arr:String[]...

When compiling code containing this here: ```BlitzMax SuperStrict Framework Brl.StandardIO Type TTest Field name:String End Type Local t:TTest = Null DebugLog("name: " + t.name) '

"PrincessAlexa_Hehehe" brought up an issue on our discord server: a segfault in some hmm.. uncommon use of arrays. I truncated the issue down to this: ``` SuperStrict Framework Brl.StandardIO Global...

Win x64 v129.3.45 release SuperStrict Struct Test Field x:Float Field y:Float Field z:Float Method Set(x_:Float, y_:Float, z_:Float) x = x_ y = y_ z = z_ EndMethod EndStruct Local data:Test[5]...

Hey, as @scaremonger just wrote about it on discord ... ```Blitzmax SuperStrict Enum WEEKDAY; MON,TUE,WED,THU,FRI,SAT,SUN; End Enum Local today:WEEKDAY = WEEKDAY.MON Print "Today is "+today.toString() Local tomorrow:WEEKDAY = WEEKDAY( (...

When I saw that @scaremonger used the "myTIntMap[intKey]"-array-approach I asked myself if it would be useable to have the "array slicing" being kind of useable too. ``` newIntMap = oldIntMap[beginKey...

```BlitzMax SuperStrict Framework Brl.StandardIO Struct STest Field ReadOnly X:Int Field ReadOnly Y:Int Method New(value:Int) New(value, value) End Method Method New(value1:Int, value2:Int) Self.X = value1 Self.Y = value2 End Method End...

Hello. Is there a guide for building an android from Windows? Is Android development supported at all or are there any plans?

Assume you have a function accepting "long" and you want to manually pass a value. ``` SuperStrict Framework Brl.StandardIO Function MyFunc:Long(p:Long) Return p End Function Print MyFunc($12345600000654321:Long) Print MyFunc($12345600000654321) If...