Cloudbook:
C
Home
Variables
Strings
§ 3
↵ lesson
← prev
C-O-matic
If statement
Else statement
Foreach statment
Strings
# Modify this program to complete the famous # quote from Pee-wee's Big Adventure $s = "and knitting" ; $t = "" ; # the empty string $t = "$s $t"; $t = "$s $t"; $t = "$s $t"; print $t ;
The output goes here