08_module_imports directory implemented
This commit is contained in:
parent
0080ec1dfc
commit
f696aa4174
|
|
@ -0,0 +1,5 @@
|
||||||
|
import crypto.sha256 as v_sha256
|
||||||
|
|
||||||
|
pub fn main(){
|
||||||
|
println('oi')
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
import os
|
||||||
|
|
||||||
|
pub fn main(){
|
||||||
|
name := os.input('Type your name')
|
||||||
|
println(name)
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
import os { input, user_os }
|
||||||
|
|
||||||
|
pub fn main(){
|
||||||
|
name := input('Type yout name')
|
||||||
|
println('Nane ${name}')
|
||||||
|
current_os := user_os()
|
||||||
|
println('Your OS is ${current_os}')
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue