Fix print.C

Remove semicolon to print out
This commit is contained in:
Yuka Takahashi 2018-10-12 13:48:11 +02:00 committed by sftnight
parent d77a3252dc
commit 80fa13b41e

View File

@ -11,5 +11,5 @@
#include "cling/Interpreter/Interpreter.h"
int a = 21;
gCling->toString("int", &a);
gCling->toString("int", &a)
// CHECK: "21"