1pub fn hello_world() {
2 println!(" โ๏ธ");
3 println!("\n\n\n");
4 println!(" ๐");
5 println!(" ");
6 println!("๐๐๐๐๐๐๐");
7 println!("๐๐๐๐๐๐๐");
8}
9
10pub fn math() {
11 println!("eแตขแตDฮฆโปยน(0)แตDยฒh(xฬ)Dฮฆโปยน(0)eโฑผ");
12}
13
14pub fn emojis() {
15 println!("๐ ๐ โจ ๐");
16}
17
18#[test]
19fn it_works() {
20 hello_world();
21 assert!(true);
22}
23
24#[test]
25fn emoji() {
26 emojis();
27 }
28
29#[test]
30fn this_and_that() {
31 println!("This, That, Pineapple");
32 println!("Jetzt kommt der Moment, wo der Frosch in's Wasser springt");
33}