Page 4 of 4 FirstFirst ... 234
Results 31 to 32 of 32

Thread: Embedded - supported or not?

  1. #31
    thinBasic MVPs
    Join Date
    Oct 2012
    Location
    Germany
    Age
    54
    Posts
    1,529
    Rep Power
    170
    Quote Originally Posted by ReneMiner View Post
    ...

    Probably merits a thread of its own.
    ...
    Probably not. Even we obtained our decimal system and the digits from arab roots and they have great mathematicians - the Ring lacks impermeableness, not really codetight and it feels a bit strange to use a verb as "see" as command to print.
    If "show" were used instead it would make sense. The arab phrase for "Look at that!" might be the same as "Let me show you this..." or "Do you see it?"
    Especially i see - when i watch my taskmanager -
    multithreading out of control -
    before actually a second thread is invoked 3 or 4 threads already yall'a-yall'a and nothing that could pull the brakes
    I think there are missing some Forum-sections as beta-testing and support

  2. #32
    Thank you ReneMiner for referring to Ring language. i am still testing it.
    we can use the classic "print" by loading first "stdlib.ring" this is like uses "console"

    load "stdlib.ring"
    print("hello worlds")
    
    or we can use "?" without loading stdlib.ring
    regrading the keywords : see,give,ok and so on we can use the function ChangeRingKeyword
    such as
    ChangeRingKeyword see throw
    will use throw for output
    and
    ChangeRingKeyword ok EndOfConditional
    will use EndOfConditional for end of condition
    some international users are using their own Unicode words instead of the original names

    the following example from
    https://www.codeproject.com/Articles...mming-Language
    ChangeRingKeyword see throw
    ChangeRingKeyword ok EndOfConditional
    
    
    for x = 1 to 10
            for y = 1 to 10
                    throw "x=" + x + " y=" + y + nl
                    if x = 3 and y = 5
                            exit 2     # exit from 2 loops
                    EndOfConditional
            next
    next
    
    but its first index is 1 (like thinbasic arrays)
    Last edited by primo; 08-12-2022 at 19:16.

Page 4 of 4 FirstFirst ... 234

Similar Threads

  1. OpenCL: Supported hardware
    By Petr Schreiber in forum OpenCL
    Replies: 6
    Last Post: 13-02-2010, 10:36
  2. Type pointer var not supported by WITH?
    By Michael Hartlef in forum thinBasic General
    Replies: 9
    Last Post: 24-09-2008, 15:42
  3. glcreateshader not supported !
    By sandyrepope in forum TBGL Bonus Pack
    Replies: 3
    Last Post: 31-10-2007, 13:51
  4. New supported post tag: [youtube]
    By ErosOlmi in forum General
    Replies: 1
    Last Post: 03-02-2007, 10:23

Members who have read this thread: 2

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •