Skip to content

ArtyomKingmang/Lino

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple compiled programming language for tutorial.

Target Platform: Arduino

Example:

Int ledPin = 2

func setup() : Void {
  pinMode(ledPin, OUTPUT)
}

func loop() : Void {
  
  digitalWrite(ledPin, HIGH)
  delay(200)
  
  digitalWrite(ledPin, LOW)
  delay(200)
}

Test input:

func main(Int a) : Int
{
    Int c = 10
    print "Hello"
    return 0
}

Test output:

int main(int a){
   int c=10;
   Serial.print("Hello");
   return 0;
}

About

Compiler to wiring

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages