This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Given the module: | |
import Enum | |
defmodule D do | |
def transpose(t) do | |
map(0..count(at(t, 0))-1, fn(x) -> map(t, fn(y) -> at(y, x) end) end) | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/perl -l | |
use strict; | |
use utf8; | |
use open qw( :encoding(UTF-8) :std ); | |
use charnames qw( :full :short ); | |
my $word = "no\N{LATIN SMALL LETTER E WITH DIAERESIS}l"; | |
my $combine = "noe\N{COMBINING DIAERESIS}l"; |