Skip to content

Instantly share code, notes, and snippets.

@rlbisbe
Created September 27, 2015 06:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rlbisbe/e03e1fbfb6fb0ca3fcc8 to your computer and use it in GitHub Desktop.
Save rlbisbe/e03e1fbfb6fb0ca3fcc8 to your computer and use it in GitHub Desktop.
def assert(expected: Int, actual: Int){
if(expected == actual){
println("OK");
}
else {
println("Error, expected: " + expected + " actual: "+ actual);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment