master
/ miniconda3 / pkgs / yaml-cpp-0.7.0-h295c915_1 / info / recipe / parent / test / main.cpp

main.cpp @74036c5 raw · history · blame

#include <cassert>
#include <yaml-cpp/yaml.h>

int main()
{
    YAML::Node node = YAML::Load("[1, 2, 3]");

    assert(node.IsSequence());

    return 0;
}