Last active
May 3, 2020 21:38
-
-
Save domiyanyue/b2e0b376ef00ebaecb6c78e943882384 to your computer and use it in GitHub Desktop.
pragma once example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
struct Time { | |
int hour; | |
int minute; | |
}; | |
void printTime(Time t); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment