Advertisement
Guest User

Untitled

a guest
Jun 25th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. [ get_log( request )( response ) {
  2. install (
  3. FileNotFound => response = "FileNotFound",
  4. IOException => response = "IOException"
  5. );
  6.  
  7. readFile@File( { .filename = request + ".txt" } )( response.content );
  8. response = "Success"
  9. }]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement