Post Test

less than 1 minute read

Published:

No blogs yet. Just testing this functionality of Latex and code highlighting.

This next text should be in latex: $ \nabla_\boldsymbol{x} J(\boldsymbol{x}) $

Some Python Code below

def print_name_age(name, age):
  print("Hello, {}. You are {}.".format(name, age))

print_name_age(Steven, 25)
#prints 'Hello, Steven. You are 25.'

Some C++ code below:

int plusOne(int value){
  return value + 1;
}