mirror of
https://github.com/github/codeql.git
synced 2025-12-22 11:46:32 +01:00
11 lines
208 B
JavaScript
11 lines
208 B
JavaScript
var s;
|
|
s = "some words%n" +
|
|
"and more";
|
|
s = "some words\n" +
|
|
"and more";
|
|
s = "the class java.util." +
|
|
"ArrayList";
|
|
s = "some data: a,b,c," +
|
|
"d,e,f";
|
|
s = "overflow: scroll;" +
|
|
"position: absolute;"; |