This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace LearnBasic.ConsoleCSharp | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Menu(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace LearnBasic.ConsoleCSharp | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Menu(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace LearnBasic.ConsoleCSharp | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Menu(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace LearnBasic.ConsoleCSharp | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Console.Clear(); | |
Menu(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace ConsoleApp.BasicCSharp | |
{ | |
class ExecuteProgram | |
{ | |
static void Main(string[] args) | |
{ | |
Circle circle = new Circle(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <ESP8266WiFi.h> | |
#include <Adafruit_Fingerprint.h> | |
#include <SoftwareSerial.h> | |
#include <FirebaseArduino.h> | |
int p1 = 13; | |
int p2 = 15; | |
SoftwareSerial mySerial(p1, p2); | |
Adafruit_Fingerprint finger = Adafruit_Fingerprint(&mySerial); |