Hey. I'm not sure, but if I understood currectly, Graalvm makes Java run without the jvm on native machines and it produces assembly like C/C++? If it does this, does this me...
private static boolean bitwise_or(List<Integer> list) { // return (list.stream().count(e -> (e % 2) == 0) > 1); return (list.stream().filter(e -> (e % 2) == 0).count()...
How can i do multiple statements when an error occurs? because after "except on do" construct I can't put begin and end; and it only allows for 1 statement to be executed. ...
What is the difference between overriding methods of an interface and overriding methods of an abstract class? are abstract classes and interfaces the same thing? if they are...
I want to set the first element of my array to 4, and the rest to 10. Is there a better way to do this? int[] arr2 = new int[26]; arr2[0] = 4; Arrays.fill(arr2,1,25,10);
Hi, the eclipse installer can't download. how to fix it? here is the log: https://pastebin.pl/view/a60ebced
Which one should I choose In the OS section of fpcupdeluxe? I want to produce .bin files for Sega Mega Drive
I want to link libglfw3.a where should i write the name of this library? i put it's path in Libraries field
Recently I've read about using the "red zone" for optimization purposes. Does FPC does this too when possible? https://en.m.wikipedia.org/wiki/Red_zone_(computing)
What does default mean in this code? https://github.com/maciej-izak/PascalSmartPointers/blob/master/sources/Nullable.pas Instance: ^T default;
Where can i enable this command line option from Lazarus? I see -Fu, -Fi and -Fl in project options but no -Ff -Ff<x> Add <x> to framework path (Darwin only)
Why can't i write var pp : ^^Integer; instead? Can't we write double pointers like ^^Type without declaring a type first? https://paste.ubuntu.com/p/j7VYsxDT7k/
Errors: source.pas(7,8) Error: Illegal assignment to for-loop variable "i" source.pas(9,4) Fatal: There were 1 errors compiling module, stopping Error: /usr/bin/ppcx64 returne...
I want to read and write a binary file. should i use TFileStream or TBytesStream? 🤔
Can fpc functions documentation be seen like C man pages in terminal? 🤔