Basic x Arduino

/*
 TOYOSHIKI Tiny BASIC for Arduino
 (C)2012 Tetsuya Suzuki
 https://togetter.com/li/1006149
 https://github.com/robo8080/ttbasic_ESP8266
 */

void basic(void);

void setup(void){
    // put your setup code here, to run once:
    Serial.begin(115200);
    randomSeed(analogRead(0));
}

void loop(void){
    // put your main code here, to run repeatedly:
    basic();
}
source.zip