microsoft/qdk

Public

mirrored from https://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.13

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

samples/language/MultiFileProject/src/Particle.qs

9lines · modeblame

ce8303b0Alex Hansen1 years ago1struct Particle { X : Int, Y : Int, Z : Int }
ff95d996Alex Hansen2 years ago2
ce8303b0Alex Hansen1 years ago3function addParticles(a : Particle, b : Particle) : Particle {
4return new Particle {
5X = a.X + b.X,
6Y = a.Y + b.Y,
7Z = a.Z + b.Z
8};
ff95d996Alex Hansen2 years ago9}