Viewing 7 posts - 1 through 7 (of 7 total)
Document document = new Document();
Page page = new Page(PageSize.Letter, PageOrientation.Portrait, 54.0f);
document.Pages.Add(page);
string labelText = "Hello World...\nFrom DynamicPDF Generator for .NET\nDynamicPDF.com";
Label label = new Label(labelText, 0, 0, 504, 100,...
January 31, 2022 at 5:56 pm
# Solve the quadratic equation ax**2 + bx + c = 0
# import complex math module
import cmath
a = 1
b = 5
c = 6
# calculate the discriminant
d =...
January 31, 2022 at 5:55 pm
--after some inserted lines...
SELECT
p.[name],
sp.permission_name,
sp.state_desc,
sp.class_desc
FROM sys.server_permissions AS sp
JOIN sys.server_principals AS p
ON sp.grantee_principal_id = p.principal_id
WHERE p.[name] = 'YourTestLogin'
--and some more breaks pasted from SSMS
--comment
January 31, 2022 at 5:54 pm
--after some inserted lines...
SELECT
p.[name],
sp.permission_name,
sp.state_desc,
sp.class_desc
FROM sys.server_permissions AS sp
JOIN sys.server_principals AS p
ON sp.grantee_principal_id = p.principal_id
WHERE p.[name] = 'YourTestLogin'
--and some more breaks pasted from SSMS
--comment
January 31, 2022 at 5:53 pm
#!/bin/bash
echo \
"here"
echo -n "here" \
\ echo -e " \ here"
/* This has a backslash \
continued */
Test backslash inside code block:
echo \
"here";
Same code out of code...
February 11, 2021 at 10:57 am
Test line ending with backslash: \
Test backslash inside code block
echo \ "here";
Same code out of code block:
echo \
"here";
February 11, 2021 at 9:47 am
testing code
Select something
From somewhere
Where avalue = 10
April 18, 2019 at 1:18 pm
Viewing 7 posts - 1 through 7 (of 7 total)