Guest User

Untitled

a guest
Jun 17th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. fun echo r =
  2. if blobSize (fileData r.File) > 100000 then
  3. return <xml>Whoa! That one's too big.</xml>
  4. else
  5. returnBlob (fileData r.File) (blessMime (fileMimeType r.File))
  6.  
  7. fun main () = return <xml><body>
  8. <h1>The Amazing File Echoer!</h1>
  9.  
  10. <form>Upload a file: <upload{#File}/> <submit action={echo}/></form>
  11. </body></xml>
Add Comment
Please, Sign In to add comment