26 Nov, 2009, kiasyn wrote in the 1st comment:
Votes: 0
You can also highlight a line by putting @@ at the start of the line

# The Greeter class
class Greeter
def initialize(name)
@@ @name = name.capitalize
end

def salute
puts "Hello #{@name}!"
end
end

# Create a new object
g = Greeter.new("world")

# Output "Hello World!"
g.salute
26 Nov, 2009, Runter wrote in the 2nd comment:
Votes: 0
And I approve of this message.
01 Dec, 2009, Mudder wrote in the 3rd comment:
Votes: 0
Using highlight more than once in the same code quote causes issues.
17 Dec, 2009, Pedlar wrote in the 4th comment:
Votes: 0
@@int main() { 
if(line.Highlighted() == TRUE)
@@ std::cout << "Kiasyn Sucks\r\n";
else
@@ std::cout << "Kiasyn Fail\r\n";

return 0;
}
17 Dec, 2009, Pedlar wrote in the 5th comment:
Votes: 0
System@mudbytes# ./a.out
Kyasin Fail
System@mudbytes#
0.0/5