Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
19
Task/Unicode-strings/Sidef/unicode-strings.sidef
Normal file
19
Task/Unicode-strings/Sidef/unicode-strings.sidef
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# International class; name and street
|
||||
class 国際( なまえ, Straße ) {
|
||||
|
||||
# Say who am I!
|
||||
method 言え {
|
||||
say "I am #{self.なまえ} from #{self.Straße}";
|
||||
}
|
||||
}
|
||||
|
||||
# all the people of the world!
|
||||
var 民族 = [
|
||||
国際( "高田 Friederich", "台湾" ),
|
||||
国際( "Smith Σωκράτης", "Cantù" ),
|
||||
国際( "Stanisław Lec", "południow" ),
|
||||
];
|
||||
|
||||
民族.each { |garçon|
|
||||
garçon.言え;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue