Login
|
Signup
langref.org
-
perl
add..
all
clojure
cpp
csharp
erlang
fantom
fsharp
go
groovy
haskell
java
ocaml
php
python
ruby
scala
Home
All
Solved
Unsolved
Strings
Numbers
Regex
Lists
Maps
Structure
Files
Dates
OOP
Networking
XML
Algorithms
Misc
Parallel
View Problem
Strings
Declaration
Define a multiline string
Define the string:
"This
Is
A
Multiline
String"
perl
$text = 'This
Is
A
Multiline
String';
$text = 'This
Is
A
Multiline
String';
perl
$text = <<EOF;
This
Is
A
Multiline
String
EOF
$text = <<EOF;
This
Is
A
Multiline
String
EOF
Submit a new solution for
perl
There are 29 other solutions in
additional
languages (
clojure
,
cpp
,
csharp
,
erlang
...)