aboutsummaryrefslogtreecommitdiff
path: root/code/test.odin
blob: 18fc36c16c40776ffe26493617702c01a1edad9d (plain)
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
/*#import "fmt.odin"

thing :: proc() {
	fmt.println("Hello1!")
}*/


#import "fmt.odin" as format

thing :: proc() {
	format.println("Hello2!")
}


/*#import "fmt.odin" as .

thing :: proc() {
	println("Hello3!")
}


*/
/*#import "fmt.odin" as _

thing :: proc() {
	// println("Hello4!")
}
*/

/*
#include "fmt.odin"

thing :: proc() {
	println("Hello5!")
}*/