Credit & inspiration ====================== Inspired by and derived from https://hpc-carpentry.github.io/hpc-python/ which is distributed under CC-BY 4.0 (https://creativecommons.org/licenses/by/4.0/). .. tabs:: .. code-tab:: c int main(const int argc, const char **argv) { return 0; } .. code-tab:: c++ int main(const int argc, const char **argv) { return 0; } .. code-tab:: py def main(): return .. code-tab:: java class Main { public static void main(String[] args) { } } .. code-tab:: julia function main() end .. code-tab:: fortran PROGRAM main END PROGRAM main