Advertisement
Guest User

Untitled

a guest
Nov 8th, 2019
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. nix-repl> content = builtins.readFile ./test
  2.  
  3. nix-repl> content
  4. "Content: ${x}\n"
  5.  
  6. nix-repl> builtins.tryEval "${content}"
  7. { success = true; value = "Content: ${x}\n"; }
  8.  
  9. nix-repl> x = "123"
  10.  
  11. nix-repl> builtins.tryEval "${content}"
  12. { success = true; value = "Content: ${x}\n"; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement