Skip to content

Instantly share code, notes, and snippets.

View VikramThory's full-sized avatar

Vikram Singh VikramThory

View GitHub Profile
@VikramThory
VikramThory / Console.log function
Created January 17, 2019 14:57
Javascript basic
console.log('Hello world')
console.log("Hello world in double quotes")
console.log("I'm using javascript")
console.log('he say "hi!!"')
console.log('I\'m using javascript')
@VikramThory
VikramThory / print function
Created January 17, 2019 14:13
python basic
print('hello world')
print("Double quotes")
print('Hello','World')
print('Hello' + 'World')
print("I'm a programmer")
print('He say "Hi!!"')
print('I\'m a programmer')