microsoft/qdk

Public

mirrored fromhttps://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
9c33427155ee7a0d2f2beebc2f03d7c4609b6e4f

Branches

Tags

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

Clone

HTTPS

Download ZIP

samples/language/MultiFileProject/src/Particle.qs

9lines · modecode

1struct Particle { X : Int, Y : Int, Z : Int }
2
3function addParticles(a : Particle, b : Particle) : Particle {
4 return new Particle {
5 X = a.X + b.X,
6 Y = a.Y + b.Y,
7 Z = a.Z + b.Z
8 };
9}