forked from SaptakBhoumik/Peregrine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtype.pe
61 lines (61 loc) · 1.06 KB
/
type.pe
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
61
def something1()->int32:
return 6
def something2()->int16:
return 6
def something3()->int8:
return 6
def something4()->float32:
return 6
def something5()->char:
return 6
def something6()->uint32:
return 6
def something7()->uint16:
return 6
def something8()->uint8:
return 6
def something9()->uint:
return 6
def constant():
const int a=9
const int32 v=67
const int16 vg=5
const int8 j=4
const uint au=9
const uint32 vu=67
const uint16 vug=5
const uint8 ju=4
const str charecter="d"
const float dec=4.6
const c=a
const b=vg
const k=v
const l=j
const cha=charecter
const decimal=dec
def main():
kj=something2()
kjaa=something3()
kaa=something4()
float32 kaaa=something4()
char aaa=4
uint au=9
uint32 vu=67
uint16 vug=5
uint8 ju=4
const int ok
o=ok
kjh=something1()
float32 dc=2
s=dc
somevar=something5()
int a=9
int32 v=67
int16 vg=5
int8 j=4
c=a
b=vg
k=v
l=j
constant()
print("Ok")