You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
prochello_world {} {return"Hello World!"}
when HTTP_REQUEST priority 500 {
# Comments should be greenif {1} {puts"i should look like this"}
puts"[call hello_world]"if {1} {puts"i am still highlighted properly"}
# I am green
}
Example Broken
When [call hello_world] is followed by any alpha or numeric character, it causes the following code to appear as though it is quoted string.
prochello_world {} {return"Hello World!"}
when HTTP_REQUEST priority 500 {
# Comments should be greenif {1} {puts"i should look like this"}
puts"[call hello_world]a"if {1} {puts"but now I look like quoted text"}
# I am brown; and the if statement above
}
The text was updated successfully, but these errors were encountered:
** Example Working**
Example Broken
When
[call hello_world]
is followed by any alpha or numeric character, it causes the following code to appear as though it is quoted string.The text was updated successfully, but these errors were encountered: