@yank-note/extension-code-runner
v1.4.0
Published
Run code for multiple languages: BASH/SH, PHP, Python, Node.js, BAT, Java, C and more.
Downloads
13
Readme
Code Runner
Run code for multiple languages: BASH/SH, PHP, Python, Node.js, Bat, C, Java and more.
Note: This plugin is not available for Mac App Store downloaded Yank Note.
The first line of the code block needs to contain the string --run--
.
```js
// --run--
await new Promise(r => setTimeout(r, 500))
console.log('HELLOWORLD')
```
```node
// --run--
console.log('HELLOWORLD')
```
```php
// --run--
echo 'HELLOWORLD!';
```
```python
# --run--
print('HELLOWORLD')
```
```shell
# --run--
date
```
```bat
REM --run--
@echo HELLOWORLD
```
```c
// --run-- gcc $tmpFile.c -o $tmpFile.out && $tmpFile.out
#include <stdio.h>
int main () {
printf("Hello, World!");
return 0;
}
```
```java
// --run-- java $tmpFile.java
class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
```