sudo wget -qO /etc/apt/trusted.gpg.d/dart_linux_signing_key.asc https://dl-ssl.google.com/linux/linux_signing_key.pub
sudo wget -qO /etc/apt/sources.list.d/dart_stable.list https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_stable.list
sudo apt update
sudo apt install -y dart
dart --version
This file contains 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
fn main() { | |
let x = 5; | |
println!("x has the value {}", x); | |
} |
This file contains 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
# INSTALL | |
# cp tmuxconf ~/.tmux.conf | |
# | |
# Set prefix key to c-a instead of default c-b | |
# Tmux Overried Keybinding on Alacritty | |
# Vim Workflow Goodness | |
unbind C-b | |
set -g prefix C-a | |
bind C-a send-prefix |
This file contains 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
// Q2 Week 2 | |
// No. 4 | |
using System; | |
public class Program | |
{ | |
public static void Main() | |
{ | |
Console.WriteLine("Enter a number: "); |
This file contains 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
// Q2 Week 2 | |
// No 3. | |
using System; | |
public class Program | |
{ | |
public static void Main() | |
{ | |
// get the first number and 2nd number |
This file contains 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
// Q2 Week2 | |
// No. 2 | |
using System; | |
public class Program | |
{ | |
public static void Main() | |
{ | |
// get the first number and 2nd number | |
// and show result which is greater than the two numbers |
This file contains 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
// Q2 Week 4 | |
// No.3 | |
using System; | |
public class Program | |
{ | |
public static void Main() | |
{ | |
// create a program that show descending value numbers from smallest to largest |
This file contains 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
// Q2 Week 4 | |
// No.2 | |
using System; | |
public class Program | |
{ | |
public static void Main() | |
{ | |
// create a program that show ascending value numbers from smallest to largest | |
int number = 1; |
This file contains 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
// Q2 Week 3 | |
// No. 3 | |
using System; | |
public class Program | |
{ | |
public static void Main() | |
{ | |
// show the descending value numbers from smallest to largest. |
This file contains 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
// Q2 Week 3 | |
// No. 2 | |
using System; | |
public class Program | |
{ | |
public static void Main() | |
{ | |
// show the ascending value numbers from smallest to largest. | |
int i = 0; |
NewerOlder