Postagem 1–6 de 6
1
por
2 anos atrás
The Angeldust website will now properly handle whitespace in forum posts and private messages. Reload the site if you don't see it yet. Here's a demo of indented C source code: #include <stdio.h> int main(int argc, char** argv) { printf("Hello world!\n"); return 0; } Existing forum posts and private messages will now also properly show their whitespace as intended. URL handling should also be slightly more user friendly now. Hopefully this new system lets everyone express themselves even better! Let me know if you run into problems or see potential security issues.
por
2 anos atrás
nice, ... very nice! I did have to shift-reload to get the feature. However, your open curly brace is in the wrong spot. same line is for internal blocks, not functions #include <stdio.h> void ff(void) { printf("Hello, world!\n"); } void gg(void) { printf("Good game mate\n"); } int main(int argc, char** argv) { if (argc > 2) { ff(); } else { gg(); } return 0; }
por
2 anos atrás
the real way to do it: #include <stdio.h> void ff ( void ) { printf ( "Hello, world!\n" ) ; } void gg ( void ) { printf ( "Good game mate\n" ) ; } int main ( int argc, char * * argv ) { if ( argc > 2 ) ff () ; else gg () ; return 0 ; } This way you always know where the code is, by looking at the right side. Spaces also help with readability!
Postagem 1–6 de 6
1