mirror of
https://github.com/ziglang/zig.git
synced 2026-01-20 14:25:16 +00:00
11 lines
145 B
C++
11 lines
145 B
C++
// test.cpp
|
|
#include <new>
|
|
#include <cstdio>
|
|
|
|
int main() {
|
|
int *x = new int;
|
|
*x = 5;
|
|
fprintf(stderr, "x: %d\n", *x);
|
|
delete x;
|
|
}
|