v0.14.0
Functions
simple.cpp File Reference
#include <iostream>

Go to the source code of this file.

Functions

void temp (int x, int y=10)
 
int main ()
 

Function Documentation

◆ main()

int main ( )

Definition at line 30 of file simple.cpp.

31 {
32  temp(10);
33  temp(10, 20);
34 
35  // simp<int,1> ttx(12);
36  // cout << ttx.temp[0] << endl;
37 }

◆ temp()

void temp ( int  x,
int  y = 10 
)
Examples
mortar_contact_thermal.cpp, and simple_contact_thermal.cpp.

Definition at line 4 of file simple.cpp.

4 { cout << x << " " << y << endl; }
temp
void temp(int x, int y=10)
Definition: simple.cpp:4