mirror of
https://github.com/github/codeql-action.git
synced 2025-12-26 17:20:10 +08:00
13 lines
209 B
C#
13 lines
209 B
C#
using System;
|
|
|
|
namespace HelloWorldApp {
|
|
class Geeks {
|
|
static void Main(string[] args) {
|
|
if (true) {
|
|
Console.WriteLine("Hello World!");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|