REPL function declaration

This commit is contained in:
Kyler Olsen 2025-11-27 20:33:21 -07:00
parent c9aceac591
commit 46a855abd0
2 changed files with 3 additions and 1 deletions

View File

@ -6,4 +6,6 @@
#ifndef SLS_REPL_H
#define SLS_REPL_H
int repl(int argc, char *argv[]);
#endif // SLS_REPL_H

View File

@ -5,7 +5,7 @@
#include <stdio.h>
int main(void) {
int main(int argc, char *argv[]) {
printf("Hello, world!\n");
return 0;
}