or
or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up
Syntax | Example | Reference | |
---|---|---|---|
# Header | Header | 基本排版 | |
- Unordered List |
|
||
1. Ordered List |
|
||
- [ ] Todo List |
|
||
> Blockquote | Blockquote |
||
**Bold font** | Bold font | ||
*Italics font* | Italics font | ||
~~Strikethrough~~ | |||
19^th^ | 19th | ||
H~2~O | H2O | ||
++Inserted text++ | Inserted text | ||
==Marked text== | Marked text | ||
[link text](https:// "title") | Link | ||
 | Image | ||
`Code` | Code |
在筆記中貼入程式碼 | |
```javascript var i = 0; ``` |
|
||
:smile: | ![]() |
Emoji list | |
{%youtube youtube_id %} | Externals | ||
$L^aT_eX$ | LaTeX | ||
:::info This is a alert area. ::: |
This is a alert area. |
On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?
Please give us some advice and help us improve HackMD.
Syncing
xxxxxxxxxx
Nushell core team meeting 2023-11-22
Attendees
Agenda
is
operator? (out-of-the-blue PR: https://github.com/nushell/nushell/pull/11091)describe -d
alreadystd testing
error make
->throw error
+throw warning
Discussed Topics
Inspector Kubouch presents an interactive debugger demo
spread operator
ready to land for list, thanks to @ysthakur
New nu-parser
EngineState
andStateDelta
will need some tweaking--flag: bool
/ can you override bare flags with a variableCurrently
--foo
!=--foo: bool
The former can only be toggled dynamically in an if statement (problematic in), the latter requires a passed value
WindSoilder's comment on the issue thread:
https://github.com/nushell/nushell/issues/7260#issuecomment-1811354775
Possible idea, tight coupling to flag with
=
current state
Design remains unclear, iterate before boxing us into a new design
is
operatornot ready yet
concern around "static" types vs runtime type information
Type system wishlist in #11108
Feedback to the issue author:
- Stefan
- break up
- we are tightening up the design for 1.0
- what needs to be designed before 1.0
commands that take data both from the pipe and the input.
When does it become ambiguous?
Case by case analysis, what is the meaning of the arguments and input is it absolutely equivalent
Counterpoint we now have a spread operator:
...$in
start
Design thoughts raised
If we can replace implicit or flag heavy magic with compositional patterns
(e.g.
enumerate
instead of implcit args)