diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2026-02-23 22:18:22 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-23 22:18:22 -0500 |
| commit | 8f98dc579af1993ec85bd849656c4835b4039dd6 (patch) | |
| tree | 3ee45620d83b209c1c11248afc9ab83ffcf39691 /willow/tools/willowc/main.cpp | |
| parent | c2d4209f85f46cc91163bc47cc43db252c94acf6 (diff) | |
| download | compiler-8f98dc579af1993ec85bd849656c4835b4039dd6.tar.gz | |
[willow]: frontend plumbing (#13)
...
Diffstat (limited to 'willow/tools/willowc/main.cpp')
| -rw-r--r-- | willow/tools/willowc/main.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/willow/tools/willowc/main.cpp b/willow/tools/willowc/main.cpp index 237c8ce..e5049a7 100644 --- a/willow/tools/willowc/main.cpp +++ b/willow/tools/willowc/main.cpp @@ -1 +1,8 @@ -int main() {} +#include <compiler.hpp> +#include <driver.hpp> + +int main(int argc, char **argv) { + willowc::willowc_main(argc, argv); + + return 0; +} |