aboutsummaryrefslogtreecommitdiff
path: root/tests/hello_world_sdl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/hello_world_sdl.cpp')
-rw-r--r--tests/hello_world_sdl.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/hello_world_sdl.cpp b/tests/hello_world_sdl.cpp
index df69b055..35aec303 100644
--- a/tests/hello_world_sdl.cpp
+++ b/tests/hello_world_sdl.cpp
@@ -20,7 +20,8 @@ int main() {
if (SDL_MUSTLOCK(screen)) SDL_UnlockSurface(screen);
SDL_Flip(screen);
- printf("you should see a colored cube.");
+ printf("you should see a colored cube.\n");
+ printf("and here is some text that should be HTML-friendly: amp: |&| double-quote: |\"| quote: |'| less-than, greater-than, html-like tags: |<cheez></cheez>|\nanother line.\n");
SDL_Quit();