Joerg Siebenmorgen

Results 11 comments of Joerg Siebenmorgen

I did it with my last program for Win and Linux: https://www.syntaxbomb.com/smallbasic/asteroids-using-raylib-plugin/ Right now there is no automatic distribution packaging.

see https://smallbasic.github.io/pages/articles.html

I have checked the source code, but I don't think I can fix this.

see https://smallbasic.github.io/pages/network.html last section "web server"

sbasic is a console version without any graphic output. You can use sbasic for text-only output directly to the command-line. Additionally you can use sbasic in combination with a module...

a workaround until the bug is fixed seems to be: ``` for i=0 to 100 print i next i showpage input "test", t ```

I just realized, when doing 2 changes, the example works. But still DIM doesn't do, what it should. ```freebasic tload "/etc/passwd", buffer users = array("{}") for row in buffer split...

I forgot to mention, that I fixed the example a while ago -> Update example according to bug #148

I'm using Manjaro Linux and I had the same issue. This link helped to find the problem in my case: [github](https://github.com/fccm/OCamlSDL2/issues/24) When building the SmallBASIC SDL version, you will use...

here my sdl2-config file: ``` # Get the canonical path of the folder containing this script bindir=$(cd -P -- "$(dirname -- "$0")" && printf '%s\n' "$(pwd -P)") # Calculate the...