10 lines
140 B
C#
10 lines
140 B
C#
// Compiler options: -t:library
|
|
|
|
namespace Q {
|
|
public class A {
|
|
public static new string ToString() {
|
|
return "Hello world!";
|
|
}
|
|
}
|
|
}
|