Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 1st, 2012  |  syntax: None  |  size: 0.18 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. pretty-print a prolog term
  2. ?- write(["a", "b", "c"]).
  3. [[97],[98],[99]]
  4. true.
  5.  
  6. ?- write(['a','b','c']).
  7. [a,b,c]
  8. true.
  9.        
  10. library(double_quotes)
  11.        
  12. library(double_quotes)