cxxmodules_minimal/module.cppm

21 lines
279 B
Plaintext
Raw Permalink Normal View History

2024-09-11 16:37:20 +02:00
// Copyright (c) 2024 University College Roosevelt
//
// All rights reserved.
//
// Created by werner on 9/11/24.
//
module;
#include <iostream>
export module Foomod;
export int add(int a, int b) {
std::cout << "Look at me using iostream!" << std::endl;
return a + b;
}