403Webshell
Server IP : 217.160.0.212  /  Your IP : 216.73.216.141
Web Server : Apache
System : Linux www 6.18.51-i1-ampere #1196 SMP Fri Sep 11 20:43:55 CEST 2026 aarch64
User : sws1073854427 ( 1073854427)
PHP Version : 8.4.23
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /usr/share/go/src/cmd/go/testdata/mod/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/share/go/src/cmd/go/testdata/mod/rsc.io_!q!u!o!t!e_v1.5.3-!p!r!e.txt
rsc.io/QUOTE v1.5.3-PRE (sigh)

-- .mod --
module rsc.io/QUOTE

require rsc.io/quote v1.5.2
-- .info --
{"Version":"v1.5.3-PRE","Name":"","Short":"","Time":"2018-07-15T16:25:34Z"}
-- go.mod --
module rsc.io/QUOTE

require rsc.io/quote v1.5.2
-- QUOTE/quote.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 QUOTE COLLECTS LOUD SAYINGS.
package QUOTE

import (
	"strings"

	"rsc.io/quote"
)

// HELLO RETURNS A GREETING.
func HELLO() string {
	return strings.ToUpper(quote.Hello())
}

// GLASS RETURNS A USEFUL PHRASE FOR WORLD TRAVELERS.
func GLASS() string {
	return strings.ToUpper(quote.GLASS())
}

// GO RETURNS A GO PROVERB.
func GO() string {
	return strings.ToUpper(quote.GO())
}

// OPT RETURNS AN OPTIMIZATION TRUTH.
func OPT() string {
	return strings.ToUpper(quote.OPT())
}
-- QUOTE/quote_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 QUOTE

import (
	"os"
	"testing"
)

func init() {
	os.Setenv("LC_ALL", "en")
}

func TestHELLO(t *testing.T) {
	hello := "HELLO, WORLD"
	if out := HELLO(); out != hello {
		t.Errorf("HELLO() = %q, want %q", out, hello)
	}
}

func TestGLASS(t *testing.T) {
	glass := "I CAN EAT GLASS AND IT DOESN'T HURT ME."
	if out := GLASS(); out != glass {
		t.Errorf("GLASS() = %q, want %q", out, glass)
	}
}

func TestGO(t *testing.T) {
	go1 := "DON'T COMMUNICATE BY SHARING MEMORY, SHARE MEMORY BY COMMUNICATING."
	if out := GO(); out != go1 {
		t.Errorf("GO() = %q, want %q", out, go1)
	}
}

func TestOPT(t *testing.T) {
	opt := "IF A PROGRAM IS TOO SLOW, IT MUST HAVE A LOOP."
	if out := OPT(); out != opt {
		t.Errorf("OPT() = %q, want %q", out, opt)
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit