Advertisement
Guest User

Untitled

a guest
Jun 26th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. With[{x = a}, Hold[With[{a = b}, a + 2 x]]]
  2. (*==>Hold[With[{a$ = b}, a$ + 2 a]]*)
  3.  
  4. With[{x = a$}, Hold[With[{a = b}, a + 2 x]]]
  5. (*==>Hold[With[{a$ = b}, a$ + 2 a$]]*)
  6.  
  7. With[{x = a}, Hold[With[{aa$ = b}, aa$ + 2 x]]]
  8. (*==>Hold[With[{aa$ = b}, aa$ + 2 a]]*)
  9.  
  10. With[{x = a}, Hold[With[{aa$$ = b}, aa$$ + 2 x]]]
  11. (*==>Hold[With[{aa$$$ = b}, aa$$$ + 2 a]]*)
  12.  
  13. With[{x=var1$},...blackBoxCode...]
  14.  
  15. With[{x=var2$},...blackBoxCode...].
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement