swab by 51b

-module(s).
-export([m/0]).
m()->case io:get_chars('',2)of[A,B]->io:format([B,A]),m();_->0end.

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page