File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
examples_pio/Wasm_Advanced/wasm_apps Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ let LED = dev.getPinLED();
55function setup ( ) : void {
66 dev . pinMode ( LED , dev . OUTPUT ) ;
77
8- dev . println ( 'AssemblyScript is running' )
8+ dev . println ( 'AssemblyScript is running 😎 ' )
99 dev . print ( 'Greeting: ' + dev . getGreeting ( ) + '\n' ) ;
1010}
1111
Original file line number Diff line number Diff line change 44int LED_BUILTIN;
55
66void setup () {
7- println (" C++ is running" );
7+ println (" C++ is running 😎 " );
88
99 LED_BUILTIN = getPinLED ();
1010
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ struct App {
1010
1111impl App {
1212 fn new ( ) -> Self {
13- println ( "Rust is running" ) ;
13+ println ( "Rust is running 😎 " ) ;
1414
1515 let led = getPinLED ( ) ;
1616 pinMode ( led, OUTPUT ) ;
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ var LED = GetPinLED()
1010func setup () {
1111 PinMode (LED , 1 )
1212
13- Println ("TinyGo is running" )
13+ Println ("TinyGo is running 😎 " )
1414 Println ("Greeting: " + GetGreeting ())
1515}
1616
You can’t perform that action at this time.
0 commit comments