21 lines
279 B
Plaintext
21 lines
279 B
Plaintext
|
// 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;
|
||
|
}
|