Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
brewlin committed Jan 8, 2024
1 parent feb24c5 commit f1aeaf7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,16 +60,16 @@ use fmt
class Http{
# member
request
func handler(){
fn handler(){
fmt.println("hello world!",this.request)
}
}
Http::closure(){
return func(){
return fn(){
return ["arr1","arr2",3,4]
}
}
func main(){
fn main(){
a = "this is a string" #string
a = 1000 # int
fmt.println(a,b)
Expand All @@ -88,7 +88,7 @@ func main(){
```
use fmt
use os
func main(){
fn main(){
arr = [0,1,2,3,4]
map = {"1":"a","hello":"world","2":"b",3:"c","map":arr}
for( k,v : map)
Expand Down

0 comments on commit f1aeaf7

Please sign in to comment.