Tools
wasi
A very basic echo (doesn't support the coreutils echo parameters):
#include <stdio.h> int main(int argc, char *argv[]) { for(int i = 1; i < argc; i++) printf("%s ", argv[i]); printf("\n"); }
A very basic echo