gambas timestamp

This commit is contained in:
Alexander Popov 2023-03-21 01:20:26 +03:00
parent e3e89ef051
commit 0da2a75ca6
Signed by: iiiypuk
GPG Key ID: D8C9B59A9F04A70C
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
---
title: "🕘 Получение timestamp в Gambas"
date: 2023-03-21T01:20:00+03:00
draft: false
tags: [tips, basic, development]
---
```basic
' return unix timestamp
Print DateDiff(CDate("1/1/1970"), Now, gb.Second)
```