I before E except after C: Difference between revisions

→‎{{header|R}}: Fine, ya big meanie. But if you ask me, it just makes the page noisier.
(→‎{{header|R}}: Incorrect. Output missing.)
(→‎{{header|R}}: Fine, ya big meanie. But if you ask me, it just makes the page noisier.)
Line 882:
 
=={{header|R}}==
{{output?|R}}
<lang rsplus>words = tolower(readLines("http://www.puzzlers.org/pub/wordlists/unixdict.txt"))
ie.npc = sum(grepl("(?<!c)ie", words, perl = T))
Line 895 ⟶ 894:
message("(2) is ", (if (p2) "" else "not "), "plausible.")
message("The whole phrase is ", (if (p1 && p2) "" else "not "), "plausible.")</lang>
 
Output:
 
<pre>(1) is plausible.
(2) is not plausible.
The whole phrase is not plausible.</pre>
 
=={{header|Racket}}==
845

edits