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();
5
5
function setup ( ) : void {
6
6
dev . pinMode ( LED , dev . OUTPUT ) ;
7
7
8
- dev . println ( 'AssemblyScript is running' )
8
+ dev . println ( 'AssemblyScript is running 😎 ' )
9
9
dev . print ( 'Greeting: ' + dev . getGreeting ( ) + '\n' ) ;
10
10
}
11
11
Original file line number Diff line number Diff line change 4
4
int LED_BUILTIN;
5
5
6
6
void setup () {
7
- println (" C++ is running" );
7
+ println (" C++ is running 😎 " );
8
8
9
9
LED_BUILTIN = getPinLED ();
10
10
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ struct App {
10
10
11
11
impl App {
12
12
fn new ( ) -> Self {
13
- println ( "Rust is running" ) ;
13
+ println ( "Rust is running 😎 " ) ;
14
14
15
15
let led = getPinLED ( ) ;
16
16
pinMode ( led, OUTPUT ) ;
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ var LED = GetPinLED()
10
10
func setup () {
11
11
PinMode (LED , 1 )
12
12
13
- Println ("TinyGo is running" )
13
+ Println ("TinyGo is running 😎 " )
14
14
Println ("Greeting: " + GetGreeting ())
15
15
}
16
16
You can’t perform that action at this time.
0 commit comments