Skip to content

Instantly share code, notes, and snippets.

@syrusakbary
Created October 22, 2019 00:13
Show Gist options
  • Save syrusakbary/0bd11648474772fdaaaa2a7bee9f1cdd to your computer and use it in GitHub Desktop.
Save syrusakbary/0bd11648474772fdaaaa2a7bee9f1cdd to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(int argc, char **argv)
{
if (argc < 2) {
printf("Hello, WASI!\n");
} else {
printf("Hello, %s!\n", argv[1]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment