diff options
| author | Cody <cody@codyq.dev> | 2023-06-25 23:23:04 -0500 |
|---|---|---|
| committer | Cody <cody@codyq.dev> | 2023-06-25 23:23:04 -0500 |
| commit | ae4c1af949c7230c07b2a7cc86a2e4031c37f651 (patch) | |
| tree | 28d2f870bc0d6e57234b20bd9c443dc5d8d7f7e1 /test.c | |
| parent | 6a59bf6d5345fbe2487e1cc36c36aa6884fcc39d (diff) | |
| download | sloth-ae4c1af949c7230c07b2a7cc86a2e4031c37f651.tar.gz | |
getting loopy
Diffstat (limited to 'test.c')
| -rw-r--r-- | test.c | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -1,11 +1,13 @@ #include <stdio.h> -int add(int, int); -int subtract(int, int); +long long hehehaha(); + +long long addz(long long lhs, long long rhs) { + return lhs + rhs + 1; +} int main() { - int a = add(5, 2); - int b = subtract(3, 8); - printf("%d %d\n", a, b); + long long res = hehehaha(); + printf("%d\n", res); return 0; } |
