diff options
| author | Baitinq <[email protected]> | 2025-05-15 14:59:03 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-05-15 14:59:03 +0200 |
| commit | 579fc64e4fc730e212e05b5dadff8140018ca65c (patch) | |
| tree | 50983a33b7efadcd4a935d536375323ed6c6ffe3 /src/bootstrap/main.src | |
| parent | Codegen: Fix bug with nested ifs (diff) | |
| download | pry-lang-579fc64e4fc730e212e05b5dadff8140018ca65c.tar.gz pry-lang-579fc64e4fc730e212e05b5dadff8140018ca65c.tar.bz2 pry-lang-579fc64e4fc730e212e05b5dadff8140018ca65c.zip | |
Bootstrap: Tokenizer: Continue implementing
Diffstat (limited to 'src/bootstrap/main.src')
| -rw-r--r-- | src/bootstrap/main.src | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bootstrap/main.src b/src/bootstrap/main.src index aa916d9..e758d96 100644 --- a/src/bootstrap/main.src +++ b/src/bootstrap/main.src @@ -14,13 +14,13 @@ import "tokenizer.src"; let main = (argc: i64, argv: **i8) => i64 { if argc < 2 { - println("Need filename!"); + printf("Need filename!\n"); return 1; }; let filename = *(argv + 1); - println("%s", filename); + printf("%s\n", filename); tokenizer_init(filename); tokenizer_deinit(); |