08_module_imports directory implemented

This commit is contained in:
Vinicius Silva 2023-12-28 20:59:19 -03:00
parent 0080ec1dfc
commit f696aa4174
3 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,5 @@
import crypto.sha256 as v_sha256
pub fn main(){
println('oi')
}

View File

@ -0,0 +1,6 @@
import os
pub fn main(){
name := os.input('Type your name')
println(name)
}

View File

@ -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}')
}