Skip to content

Instantly share code, notes, and snippets.

View rahiyansafz's full-sized avatar
I’d rather take coffee than compliments just now.

Rahiyan Safin rahiyansafz

I’d rather take coffee than compliments just now.
View GitHub Profile
using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json;
using ShoppingCartApp.ExtensionMethod;
using ShoppingCartApp.Models;
namespace ShoppingCartApp.Controllers
{
public class ShoppingCartController : Controller
{
@rahiyansafz
rahiyansafz / .NET6Migration.md
Created September 20, 2021 18:35 — forked from davidfowl/.NET6Migration.md
.NET 6 ASP.NET Core Migration
puts "Hello World!"
IO.puts("Hello, World!")
fn main() {
println!("Hello, world!");
}
let message: string = 'Hello, World!';
console.log(message);
Imports System
Public Class Main
Public Shared Sub Main()
System.Console.WriteLine("Hello, world!")
End Sub
End Class
print('Hello, world!')
<?php
echo "Hello, world!\n";
print "Hello, world!\n";