This website works better with JavaScript.
Home
Explore
Help
Sign In
piumarta
/
subc
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
move Emacs mode selection to end
master
Ian Piumarta
3 months ago
parent
46c4a94f5a
commit
aab97b38b8
1 changed files
with
7 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+7
-3
test.txt
+ 7
- 3
test.txt
View File
@ -1,14 +1,18 @@
#!./main
-*- C -*-
#!./main
#include <stdio.h>
int foo(
int a
)
int foo(
void
)
{
return 42;
}
int main(int argc, char **argv)
{
printf("hello, world %d\n", foo(
argc
));
printf("hello, world %d\n", foo());
return 0;
}
// Local Variables:
// mode: c
// End:
Write
Preview
Loading…
Cancel
Save