People,
Newbie question:
I have a system text file with lines of the format:
Description | URL
that is constantly being updated. Since it is tedious to repetitvely run a script that will create a new web page every time, I thought I might use WASM do display this file as a web page (ie the web page would always be up to date) - and since I more familiar with C than Rust, I thought that might be the easiest place to start.
I have created the WASM web page calculator but I couldn't find any examples reading from a system text file, processing it and displaying the result - although it seems using:
emcc test.cpp -s WASM=1 -o test.html -v --embed-file test.txt
would be the command to do this . .
Anyone know of examples around that I can look at?
Thanks,
Phil.