Is there any comfortable way to define multiline string value in OScript?
I need something like this:
sqlQuery = """SELECT
objf.sys_name,
objf.ui_name,
objf.show_order,
ftype.system_name as type
FROM
object_field objf,
field_type ftype
WHERE
objf.object_type_id = 1
AND objf.field_type_id = ftype.id
"""