source:
tests/zombies/zero_one.c
@
8dc6f84
Last change on this file since 8dc6f84 was 87b9332, checked in by , 4 years ago | |
---|---|
|
|
File size: 218 bytes |
Line | |
---|---|
1 | #include <fstream.hfa> |
2 | |
3 | void foo(zero_t o) |
4 | { |
5 | sout | "It's a Zero!"; |
6 | } |
7 | |
8 | void foo(one_t o) |
9 | { |
10 | sout | "It's a One!"; |
11 | } |
12 | |
13 | void foo(int o) |
14 | { |
15 | sout | "It's a Number!"; |
16 | } |
17 | |
18 | int main() |
19 | { |
20 | foo(0); |
21 | foo(1); |
22 | foo(2); |
23 | return 0; |
24 | } |
Note: See TracBrowser
for help on using the repository browser.