Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
18
Task/Repeat-a-string/Nemerle/repeat-a-string.nemerle
Normal file
18
Task/Repeat-a-string/Nemerle/repeat-a-string.nemerle
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
using System;
|
||||
using System.Console;
|
||||
|
||||
module StrRep
|
||||
{
|
||||
Repeat(this s : string, n : int) : string
|
||||
{
|
||||
String('x', n).Replace("x", s)
|
||||
}
|
||||
|
||||
Main() : void
|
||||
{
|
||||
WriteLine("ha".Repeat(5));
|
||||
WriteLine("*".Repeat(5));
|
||||
WriteLine(String('*', 5)); // repeating single char
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue