Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Commit

Permalink
1.1.1
Browse files Browse the repository at this point in the history
Added a delay in the Windows keyboard handler code
Added WORDS() and WORD$()
Added LTRIM$(), RTRIM$(), and TRIM$()
Fixed a string compare bug where strings would be compared without a sign to "0" instead of ""
Improved snake example
Small optimizations
  • Loading branch information
PQCraft committed Jan 13, 2022
1 parent c9ac9a3 commit 644c77d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clibasic.c
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@

// Base defines

static char VER[] = "1.1";
static char VER[] = "1.1.1";

#if defined(__linux__)
static char OSVER[] = "Linux";
Expand Down Expand Up @@ -1136,7 +1136,7 @@ int main(int argc, char** argv) {
#ifndef _WIN32
if (esc) fputs("\e[22;0t", stdout);
changedtitle = true;
if (esc) printf("\e]2;CLIBASIC %s (%s-bit)%c", VER, BVER, 7);
if (esc) printf("\e]2;CLIBASIC %s (%s-bit)\x07", VER, BVER);
fflush(stdout);
#else
char* tmpstr = (char*)malloc(CB_BUF_SIZE);
Expand Down

0 comments on commit 644c77d

Please sign in to comment.