```html
/* Define styles for different programming languages */
.keyword {
color: blue;
}
.string {
color: green;
}
.comment {
color: gray;
}
.number {
color: purple;
}
/* Additional styles for HTML output */
body {
fontfamily: Arial, sansserif;
lineheight: 1.6;
padding: 20px;
}
pre {
backgroundcolor: f4f4f4;
padding: 10px;
borderradius: 5px;
overflowx: auto;
}
Programming Command: Syntax Highlighting
Below is an example of programming command syntax highlighting:
function calculateSum(num1, num2) {
let sum = 0;
for (let i = 0; i < arguments.length; i ) {
sum = arguments[i];
}
return sum;
}
// Usage example:
let result = calculateSum(10, 20, 30);
console.log('The sum is ' result);