1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
//! # jjss_tocargo
//!
//! `jjss_tocargo` is a test cargo.
/// The version of the crate
const VERSION : &str = "0.1.2";
/// The maximum number of tries
const MAX_TRY : u32 = 10;
/// Adds two numbers together.
///
/// # Examples
/// ```
/// let sum = jjss_tocargo::add(1, 2);
/// println!("{}", sum);
/// ```
///
/// Greeting function
///
/// 인사말을 출력해주는 함수입니다.
/// documentation에 한글이 출력될까요?
///
///
/// # Examples
/// - example에 대한 설명입니다.
/// - 샵 두개가 될까요?
///
/// - example 1
/// ```
/// jjss_tocargo::test_function();
/// ```
/// -example 2
/// ```
/// jjss_tocargo::test_function();
/// ```
/// 코멘트 확인용 함수
/// 자주 사용되는 구문은
/// # Examples
/// - 활용 예제
/// # Panics
/// - 패닉을 일으킬 수 있는 시나리오
/// # Errors
/// - Result를 반환할 경우 발생할 수 있는 에러의 종류와 에러 발생 조건을 설명
/// # Safety
/// -함수가 안전하지 않을(unsafe) 경우
pub async