Guest User

Untitled

a guest
Apr 22nd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. Let's see whether github highlights racket as a language.
  2.  
  3. ```racket
  4. (require graph)
  5.  
  6. (define g (directed-graph '((a b) (b a))))
  7.  
  8. (with-output-to-file "out.dot"
  9. (lambda () (graphviz g)))
  10. ```
  11. Looks like it worked.
Add Comment
Please, Sign In to add comment