source: src/examples/strings/bug-repro/default.c @ 8243cf9

string
Last change on this file since 8243cf9 was 020a349, checked in by Thierry Delisle <tdelisle@…>, 8 years ago

added some code for the shared heap used by strings (still incomplete)

  • Property mode set to 100644
File size: 108 bytes
Line 
1int foo(int ii = 5)
2{
3        return ii + 5; 
4}
5
6int main(int argc, char* argv[])
7{
8        foo(3);
9        foo();
10
11        return 0;
12}
Note: See TracBrowser for help on using the repository browser.