Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.1
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
go /
src /
go /
format /
[ HOME SHELL ]
Name
Size
Permission
Action
benchmark_test.go
2.01
KB
-rw-r--r--
example_test.go
753
B
-rw-r--r--
format.go
3.88
KB
-rw-r--r--
format_test.go
3.25
KB
-rw-r--r--
internal.go
5.04
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : example_test.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package format_test import ( "bytes" "fmt" "go/format" "go/parser" "go/token" "log" ) func ExampleNode() { const expr = "(6+2*3)/4" // parser.ParseExpr parses the argument and returns the // corresponding ast.Node. node, err := parser.ParseExpr(expr) if err != nil { log.Fatal(err) } // Create a FileSet for node. Since the node does not come // from a real source file, fset will be empty. fset := token.NewFileSet() var buf bytes.Buffer err = format.Node(&buf, fset, node) if err != nil { log.Fatal(err) } fmt.Println(buf.String()) // Output: (6 + 2*3) / 4 }
Close