Giter VIP home page Giter VIP logo

.github's People

Contributors

jbomadsen avatar thunderpoot avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

.github's Issues

I needs to be STR$(I) in TeleBASIC

In basic.md you have this example that doesn't work in most terminals:

10  FOR I = 0 TO 255
20  S$ = TH_SPRINTF$( "%4S", I )
30  ? CHR$(27) "[38;5;" I "m" S$ ;
40  IF NOT (I+1) MOD 16 THEN ?
50  NEXT

One has to change line 30 in TeleBASIC to
30 ? CHR$(27) "[38;5;" STR$(I) "m" S$ ;
since just I inserts a space before the number and that makes the escape code not work.

You might alternatively change TeleBASIC so that I is converted to string without space before the number for positive numbers. In GW-BASIC and MBASIC STR$(I) inserts a space before positive numbers, but I don't think TeleBASIC has to follow this. MID$() also works differently in TeleBASIC and GWBASIC/MBASIC, but there I think the GWBASIC/MBASIC behavior is better. I made an MBASIC version:

5 WIDTH 255
10 FOR I = 0 TO 255
20 S$ = MID$(STR$(I),2)
30 PRINT CHR$(27) "[38;5;" S$ "m" ;
35 PRINT USING "\  \";S$ ;
40 IF 0 = ((I+1) MOD 16) THEN PRINT
50 NEXT

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.