.emacs.d/snippets/c++-mode/useout

8 lines
129 B
Plaintext
Raw Permalink Normal View History

2019-08-07 17:05:17 +02:00
# -*- mode: snippet -*-
# name: using std output streams
# key: useout
2019-08-07 17:05:17 +02:00
# --
using std::cout;
using std::cerr;
using std::endl;
$0