Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
17
Task/Rot-13/Dyalect/rot-13.dyalect
Normal file
17
Task/Rot-13/Dyalect/rot-13.dyalect
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
func Char.Rot13() {
|
||||
return Char(this.Order() + 13)
|
||||
when this is >= 'a' and <= 'm' or >= 'A' and <= 'M'
|
||||
return Char(this.Order() - 13)
|
||||
when this is >= 'n' and <= 'z' or >= 'N' and <= 'Z'
|
||||
return this
|
||||
}
|
||||
|
||||
func String.Rot13() {
|
||||
var cs = []
|
||||
for c in this {
|
||||
cs.Add(c.Rot13())
|
||||
}
|
||||
String.Concat(values: cs)
|
||||
}
|
||||
|
||||
"ABJURER nowhere".Rot13()
|
||||
Loading…
Add table
Add a link
Reference in a new issue