14 lines
210 B
C++
14 lines
210 B
C++
#include <tuple>
|
|
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
|
|
// tuple-returning func
|
|
|
|
int main() {
|
|
// make a tuple, get a value from it (silly <i> syntax)
|
|
// swap a and b
|
|
// get a,b from func ...
|
|
}
|