diff options
| author | Mikhail Romanko <me@blankhex.com> | 2024-04-14 22:38:00 +0300 |
|---|---|---|
| committer | Mikhail Romanko <me@blankhex.com> | 2024-04-14 22:38:00 +0300 |
| commit | ec499b6cfc3fe196757d4467ca044b5915198d45 (patch) | |
| tree | 951107eb6da31371bacdd779d96bfd598c8a9873 /main.c | |
| parent | a645a201d85c37c81b11432acc73f48c9068846a (diff) | |
| download | bhlib-old-ec499b6cfc3fe196757d4467ca044b5915198d45.tar.gz | |
Remove whitespace
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -51,7 +51,7 @@ int factor(int x) { if (x < 2) return 1; - + return factor(x - 1) + factor(x - 2); } |
