Initial data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 72d218235f
commit f23f22d71c
199087 changed files with 3378941 additions and 0 deletions

View file

@ -0,0 +1,5 @@
sequence s = ""
for i = 1 to 5 do s &= "ha" end for
puts(1,s)
hahahahaha

View file

@ -0,0 +1,3 @@
sequence s = repeat('*',5)
*****

View file

@ -0,0 +1,9 @@
include std/console.e -- for display
include std/sequence.e -- for repeat_pattern
sequence s = repeat_pattern("ha",5)
sequence n = repeat_pattern({1,2,3},5)
display(s)
display(n)
hahahahaha
{1,2,3,1,2,3,1,2,3,1,2,3,1,2,3}

View file

@ -0,0 +1,4 @@
include std/console.e -- for display
include std/sequence.e -- for flatten
sequence s = flatten(repeat("ha",5))
display(s)

View file

@ -0,0 +1,7 @@
{
"ha",
"ha",
"ha",
"ha",
"ha"
}