12 lines
246 B
Text
12 lines
246 B
Text
/-! Tests that C trigraphs are not actually interpreted -/
|
|
|
|
def main := do
|
|
IO.println "??("
|
|
IO.println "??)"
|
|
IO.println "??<"
|
|
IO.println "??>"
|
|
IO.println "??="
|
|
IO.println "??/"
|
|
IO.println "??'"
|
|
IO.println "??!"
|
|
IO.println "??-"
|