REPL function declaration
This commit is contained in:
parent
c9aceac591
commit
46a855abd0
|
|
@ -6,4 +6,6 @@
|
||||||
#ifndef SLS_REPL_H
|
#ifndef SLS_REPL_H
|
||||||
#define SLS_REPL_H
|
#define SLS_REPL_H
|
||||||
|
|
||||||
|
int repl(int argc, char *argv[]);
|
||||||
|
|
||||||
#endif // SLS_REPL_H
|
#endif // SLS_REPL_H
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
int main(void) {
|
int main(int argc, char *argv[]) {
|
||||||
printf("Hello, world!\n");
|
printf("Hello, world!\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue