RosettaCodeData/Task/Null-object/C++/null-object-2.cpp

13 lines
179 B
C++
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
#include <iostream>
#include <optional>
std::optional<int> maybeInt()
int main()
{
std::optional<int> maybe = maybeInt();
if(!maybe)
std::cout << "object is null\n";
}