feat: add live reload rust
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
|
||||
reference: https://fasterthanli.me/articles/so-you-want-to-live-reload-rust
|
||||
|
||||
|
||||
Executable
+1
@@ -0,0 +1 @@
|
||||
gcc -Wall main.c -o main
|
||||
@@ -0,0 +1,10 @@
|
||||
#include <stdio.h>
|
||||
|
||||
void greet(const char *name) {
|
||||
printf("Hello, %s!\n", name);
|
||||
}
|
||||
|
||||
int main(void) {
|
||||
greet("moon");
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user