Skip to content

Commit

Permalink
website/user: Hello World!
Browse files Browse the repository at this point in the history
  • Loading branch information
ilg-ul committed Nov 10, 2024
1 parent 65dfae4 commit 0a22523
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions website/docs/user/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ xpm run execute
As expected, the result is:

```console
Hello world!
Hello World!
```

:::info
Expand Down Expand Up @@ -107,15 +107,15 @@ This adds an empty `package.json` where further definitions will be stored.

### Add source code

Add a simple C program that prints the traditional _Hello world!_ message:
Add a simple C program that prints the traditional _Hello World!_ message:

```c title="xpm-demo-hello/src/hello.c"
#include <stdio.h>

int
main (int argc, char* argv[])
{
printf ("Hello world!\n");
printf ("Hello World!\n");

return 0;
}
Expand Down Expand Up @@ -330,7 +330,7 @@ PS C:\Users\ilg\xpm-demo-hello> xpm run build

PS C:\Users\ilg\xpm-demo-hello> xpm run execute
> build\hello
Hello world!
Hello World!
```

</TabItem>
Expand All @@ -346,7 +346,7 @@ Hello world!

% xpm run execute
> build/hello
Hello world!
Hello World!
```

</TabItem>
Expand All @@ -362,7 +362,7 @@ $ xpm run build

$ xpm run execute
> build/hello
Hello world!
Hello World!
```

</TabItem>
Expand Down

0 comments on commit 0a22523

Please sign in to comment.